From 29eeecb905281c5908bb276266b9a27cc26109a1 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Mon, 14 Oct 2024 16:20:59 +0000 Subject: [PATCH 1/5] fix : mensaje-internos only users in group admin and beta --- ci4/app/Models/Chat/ChatModel.php | 3 +++ .../themes/vuexy/components/chat_internal_factura.php | 4 ++++ .../themes/vuexy/components/chat_internal_pedido.php | 10 +++++++--- .../vuexy/components/chat_internal_presupuesto.php | 10 +++++++--- ci4/app/Views/themes/vuexy/components/chat_pedido.php | 10 ---------- .../Views/themes/vuexy/components/chat_presupuesto.php | 2 +- httpdocs/assets/js/safekat/components/chat.js | 5 +++-- httpdocs/assets/js/safekat/pages/chatFactura.js | 2 ++ httpdocs/assets/js/safekat/pages/chatPedido.js | 6 ++++-- httpdocs/assets/js/safekat/pages/chatPresupuesto.js | 2 ++ httpdocs/themes/vuexy/vendor/css/pages/app-chat.css | 10 +++++----- 11 files changed, 38 insertions(+), 26 deletions(-) diff --git a/ci4/app/Models/Chat/ChatModel.php b/ci4/app/Models/Chat/ChatModel.php index 161b8115..7405f3b9 100644 --- a/ci4/app/Models/Chat/ChatModel.php +++ b/ci4/app/Models/Chat/ChatModel.php @@ -210,6 +210,7 @@ class ChatModel extends Model ->join("chat_departments","chat_departments.id = chats.chat_department_id","left") ->join("pedidos","pedidos.id = chats.pedido_id","left") ->whereIn("pedidos.id",$pedidos) + ->where("chats.chat_department_id is NOT NULL",NULL,FALSE) ->get()->getResultObject(); $chatMessageModel = model(ChatMessageModel::class); $count = 0; @@ -237,6 +238,7 @@ class ChatModel extends Model ->join("chat_departments","chat_departments.id = chats.chat_department_id","left") ->join("facturas","facturas.id = chats.factura_id","left") ->whereIn("facturas.id",$facturas) + ->where("chats.chat_department_id is NOT NULL",NULL,FALSE) ->get()->getResultObject(); $chatMessageModel = model(ChatMessageModel::class); $count = 0; @@ -264,6 +266,7 @@ class ChatModel extends Model ->join("chat_departments","chat_departments.id = chats.chat_department_id","left") ->join("presupuestos","presupuestos.id = chats.presupuesto_id","left") ->whereIn("presupuestos.id",$presupuestos) + ->where("chats.chat_department_id is NOT NULL",NULL,FALSE) ->get()->getResultObject(); $chatMessageModel = model(ChatMessageModel::class); $count = 0; diff --git a/ci4/app/Views/themes/vuexy/components/chat_internal_factura.php b/ci4/app/Views/themes/vuexy/components/chat_internal_factura.php index 210be798..8b6ec719 100644 --- a/ci4/app/Views/themes/vuexy/components/chat_internal_factura.php +++ b/ci4/app/Views/themes/vuexy/components/chat_internal_factura.php @@ -15,17 +15,21 @@ + user()->inGroup('admin') || auth()->user()->inGroup('beta')) { ?> +
+ user()->inGroup('admin') || auth()->user()->inGroup('beta')) { ?> +
diff --git a/ci4/app/Views/themes/vuexy/components/chat_internal_pedido.php b/ci4/app/Views/themes/vuexy/components/chat_internal_pedido.php index 800229f2..bc6f8813 100644 --- a/ci4/app/Views/themes/vuexy/components/chat_internal_pedido.php +++ b/ci4/app/Views/themes/vuexy/components/chat_internal_pedido.php @@ -15,17 +15,21 @@ + user()->inGroup('admin') || auth()->user()->inGroup('beta')) { ?> +
- + user()->inGroup('admin') || auth()->user()->inGroup('beta')) { ?> + +
diff --git a/ci4/app/Views/themes/vuexy/components/chat_internal_presupuesto.php b/ci4/app/Views/themes/vuexy/components/chat_internal_presupuesto.php index e8775dde..d8509da1 100644 --- a/ci4/app/Views/themes/vuexy/components/chat_internal_presupuesto.php +++ b/ci4/app/Views/themes/vuexy/components/chat_internal_presupuesto.php @@ -15,17 +15,21 @@ + user()->inGroup('admin') || auth()->user()->inGroup('beta')) { ?> +
- + user()->inGroup('admin') || auth()->user()->inGroup('beta')) { ?> + +
diff --git a/ci4/app/Views/themes/vuexy/components/chat_pedido.php b/ci4/app/Views/themes/vuexy/components/chat_pedido.php index 44e17de6..03768365 100644 --- a/ci4/app/Views/themes/vuexy/components/chat_pedido.php +++ b/ci4/app/Views/themes/vuexy/components/chat_pedido.php @@ -37,16 +37,6 @@ - - diff --git a/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php b/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php index cf791d27..5a9bb075 100644 --- a/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php +++ b/ci4/app/Views/themes/vuexy/components/chat_presupuesto.php @@ -1,4 +1,4 @@ -
+
diff --git a/httpdocs/assets/js/safekat/components/chat.js b/httpdocs/assets/js/safekat/components/chat.js index 0eddb850..c5f38afa 100644 --- a/httpdocs/assets/js/safekat/components/chat.js +++ b/httpdocs/assets/js/safekat/components/chat.js @@ -54,14 +54,15 @@ class Chat { if (this.chatContactsBody[0]) { this.scrollbarContacts = new PerfectScrollbar(this.chatContactsBody[0], { wheelPropagation: false, - suppressScrollX: true + suppressScrollX: true, }); } if (this.chatHistoryBody[0]) { this.scrollbarChatHistory = new PerfectScrollbar(this.chatHistoryBody[0], { wheelPropagation: false, - suppressScrollX: true + suppressScrollX: true, + }); } } diff --git a/httpdocs/assets/js/safekat/pages/chatFactura.js b/httpdocs/assets/js/safekat/pages/chatFactura.js index bfeacc7e..a70088e2 100644 --- a/httpdocs/assets/js/safekat/pages/chatFactura.js +++ b/httpdocs/assets/js/safekat/pages/chatFactura.js @@ -5,7 +5,9 @@ $(document).ready(() => { let chat = new Chat($("#chat-factura")) chat.init() chat.initFactura() + if($("#internal_messages_chat").length > 0){ let internalMessages = new InternalMessages($("#internal_messages_chat")) internalMessages.init() + } }) \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/chatPedido.js b/httpdocs/assets/js/safekat/pages/chatPedido.js index 681f25df..f987780c 100644 --- a/httpdocs/assets/js/safekat/pages/chatPedido.js +++ b/httpdocs/assets/js/safekat/pages/chatPedido.js @@ -5,7 +5,9 @@ $(document).ready(() => { let chat = new Chat($("#chat-pedido")) chat.init() chat.initPedido() - let internalMessages = new InternalMessages($("#internal_messages_chat")) - internalMessages.init() + if($("#internal_messages_chat").length > 0){ + let internalMessages = new InternalMessages($("#internal_messages_chat")) + internalMessages.init() + } }) \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/chatPresupuesto.js b/httpdocs/assets/js/safekat/pages/chatPresupuesto.js index c8f8e2d8..8a6ee177 100644 --- a/httpdocs/assets/js/safekat/pages/chatPresupuesto.js +++ b/httpdocs/assets/js/safekat/pages/chatPresupuesto.js @@ -5,7 +5,9 @@ $(document).ready(() => { let chat = new Chat($("#chat-presupuesto")) chat.init() chat.initPresupuesto() + if($("#internal_messages_chat").length > 0){ let internalMessages = new InternalMessages($("#internal_messages_chat")) internalMessages.init() + } }) \ No newline at end of file diff --git a/httpdocs/themes/vuexy/vendor/css/pages/app-chat.css b/httpdocs/themes/vuexy/vendor/css/pages/app-chat.css index a5b4d535..e1d82c36 100755 --- a/httpdocs/themes/vuexy/vendor/css/pages/app-chat.css +++ b/httpdocs/themes/vuexy/vendor/css/pages/app-chat.css @@ -7,7 +7,7 @@ a.send-msg-btn { } @media (min-width: 1200px) { .layout-horizontal .app-chat { - height: calc(100vh - 11.5rem - 2.2rem) !important; + height: calc(100vh - 20rem - 2.2rem) !important; } } @media (max-width: 992px) { @@ -35,7 +35,7 @@ a.send-msg-btn { } @media (min-width: 1200px) { .layout-horizontal .app-chat .app-chat-contacts { - height: calc(100vh - 11.5rem - 2.2rem); + height: calc(100vh - 20rem - 2.2rem); } } @media (min-width: 992px) { @@ -97,7 +97,7 @@ a.send-msg-btn { } @media (min-width: 1200px) { .layout-horizontal .app-chat .app-chat-sidebar-left { - height: calc(100vh - 11.5rem - 2.2rem); + height: calc(100vh - 20rem - 2.2rem); } } .app-chat .app-chat-sidebar-left.show { @@ -119,7 +119,7 @@ a.send-msg-btn { } @media (min-width: 1200px) { .layout-horizontal .app-chat .app-chat-history { - height: calc(100vh - 11.5rem - 2.2rem); + height: calc(100vh - 20rem - 2.2rem); } } .app-chat .app-chat-history .chat-history-header { @@ -182,7 +182,7 @@ a.send-msg-btn { } @media (min-width: 1200px) { .layout-horizontal .app-chat .app-chat-sidebar-right { - height: calc(100vh - 11.5rem - 2.2rem); + height: calc(100vh - 20rem - 2.2rem); } } .app-chat .app-chat-sidebar-right.show { From 6865d810dafccdde645f140815be8bee9485d6ee Mon Sep 17 00:00:00 2001 From: amazuecos Date: Tue, 15 Oct 2024 05:20:35 +0000 Subject: [PATCH 2/5] change title message notification dropdown --- ci4/app/Language/es/Chat.php | 1 + ci4/app/Views/themes/vuexy/main/defaultlayout.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ci4/app/Language/es/Chat.php b/ci4/app/Language/es/Chat.php index 1e649965..3bc975c8 100644 --- a/ci4/app/Language/es/Chat.php +++ b/ci4/app/Language/es/Chat.php @@ -2,6 +2,7 @@ return [ "chat" => "Mensajería", + "messages" => "Mensajes", "modal" => [ "new_hebra" => "Nueva hebra", "title" => "Título", diff --git a/ci4/app/Views/themes/vuexy/main/defaultlayout.php b/ci4/app/Views/themes/vuexy/main/defaultlayout.php index 05d7d9b8..6dfae172 100644 --- a/ci4/app/Views/themes/vuexy/main/defaultlayout.php +++ b/ci4/app/Views/themes/vuexy/main/defaultlayout.php @@ -122,7 +122,7 @@ $picture = "/assets/img/default-user.png"; diff --git a/xdebug.log b/xdebug.log deleted file mode 100644 index 24d2b2cb..00000000 --- a/xdebug.log +++ /dev/null @@ -1,125802 +0,0 @@ -[23] Log opened at 2024-10-15 11:01:16.760857 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. -[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[22] Log opened at 2024-10-15 11:01:51.546275 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. -[22] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] Log opened at 2024-10-15 11:02:42.871357 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:02:43.477767 - -[22] Log opened at 2024-10-15 11:02:43.498261 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:02:43.525336 - -[22] Log opened at 2024-10-15 11:02:43.537256 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:02:43.694088 - -[23] Log opened at 2024-10-15 11:03:32.451165 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:03:32.843735 - -[23] Log opened at 2024-10-15 11:03:32.868396 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:03:32.895964 - -[23] Log opened at 2024-10-15 11:03:32.904654 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:03:33.062004 - -[23] Log opened at 2024-10-15 11:03:33.836505 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:03:34.205043 - -[23] Log opened at 2024-10-15 11:03:34.224625 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:03:34.251566 - -[23] Log opened at 2024-10-15 11:03:34.259408 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:03:34.415287 - -[22] Log opened at 2024-10-15 11:05:40.650579 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:05:41.637939 - -[22] Log opened at 2024-10-15 11:05:41.662013 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:05:42.290410 - -[22] Log opened at 2024-10-15 11:05:42.302016 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:05:43.058621 - -[22] Log opened at 2024-10-15 11:06:16.354030 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. -[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[23] Log opened at 2024-10-15 11:06:21.241185 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. -[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:06:46.751864 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:06:51.631390 - -[22] Log opened at 2024-10-15 11:06:57.425409 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:06:57.826288 - -[22] Log opened at 2024-10-15 11:06:57.853302 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:06:57.881069 - -[22] Log opened at 2024-10-15 11:06:57.889538 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:06:58.043605 - -[22] Log opened at 2024-10-15 11:07:38.643584 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:07:39.029216 - -[22] Log opened at 2024-10-15 11:07:39.051593 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:07:39.079271 - -[22] Log opened at 2024-10-15 11:07:39.088486 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. -[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:07:39.243423 - -[22] Log opened at 2024-10-15 11:08:00.458590 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:08:00.860268 - -[22] Log opened at 2024-10-15 11:08:00.886168 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:08:00.914768 - -[22] Log opened at 2024-10-15 11:08:00.922943 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:08:01.079715 - -[22] Log opened at 2024-10-15 11:08:45.941456 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:08:46.925450 - -[22] Log opened at 2024-10-15 11:08:46.951844 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:08:47.580173 - -[22] Log opened at 2024-10-15 11:08:47.588264 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:08:48.342685 - -[22] Log opened at 2024-10-15 11:10:23.139159 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:10:23.537240 - -[22] Log opened at 2024-10-15 11:10:23.566143 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:10:23.593326 - -[22] Log opened at 2024-10-15 11:10:23.601763 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-15 11:10:23.702643 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:10:23.760254 - -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:10:23.775717 - -[24] Log opened at 2024-10-15 11:11:30.748012 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:11:31.139096 - -[24] Log opened at 2024-10-15 11:11:31.163291 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:11:31.190734 - -[24] Log opened at 2024-10-15 11:11:31.199365 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:11:31.354896 - -[24] Log opened at 2024-10-15 11:11:33.264760 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:11:33.664559 - -[24] Log opened at 2024-10-15 11:11:33.695522 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:11:33.722649 - -[24] Log opened at 2024-10-15 11:11:33.731085 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:11:33.882324 - -[25] Log opened at 2024-10-15 11:11:49.855369 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 11:11:51.204562 - -[25] Log opened at 2024-10-15 11:11:51.246647 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[27] Log opened at 2024-10-15 11:11:51.250926 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 11:11:51.278726 - -[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 11:11:51.694400 - -[29] Log opened at 2024-10-15 11:11:51.718096 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-15 11:11:51.718953 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[26] Log opened at 2024-10-15 11:11:51.719185 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:11:51.923489 - -[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-15 11:11:52.296399 - -[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-15 11:11:52.435905 - -[23] Log opened at 2024-10-15 11:11:55.055497 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:11:55.450165 - -[23] Log opened at 2024-10-15 11:11:55.469159 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:11:55.496462 - -[23] Log opened at 2024-10-15 11:11:55.504377 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:11:55.662878 - -[22] Log opened at 2024-10-15 11:13:43.315943 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:13:44.293474 - -[22] Log opened at 2024-10-15 11:13:44.318452 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:13:44.946173 - -[22] Log opened at 2024-10-15 11:13:44.955484 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:13:45.713625 - -[22] Log opened at 2024-10-15 11:14:16.952389 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:14:17.947962 - -[22] Log opened at 2024-10-15 11:14:17.969053 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:14:18.597531 - -[22] Log opened at 2024-10-15 11:14:18.608906 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:14:19.365411 - -[22] Log opened at 2024-10-15 11:14:20.338285 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:14:21.309504 - -[22] Log opened at 2024-10-15 11:14:21.336716 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:14:21.965975 - -[22] Log opened at 2024-10-15 11:14:21.974189 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:14:22.725567 - -[23] Log opened at 2024-10-15 11:14:48.188408 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:14:49.180014 - -[23] Log opened at 2024-10-15 11:14:49.204788 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:14:49.834310 - -[23] Log opened at 2024-10-15 11:14:49.842995 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:14:50.599887 - -[23] Log opened at 2024-10-15 11:15:07.871692 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:15:08.254585 - -[23] Log opened at 2024-10-15 11:15:08.272863 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:15:08.300427 - -[23] Log opened at 2024-10-15 11:15:08.309160 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:15:08.466605 - -[24] Log opened at 2024-10-15 11:15:22.132573 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:15:23.462599 - -[25] Log opened at 2024-10-15 11:15:23.501064 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log opened at 2024-10-15 11:15:23.503851 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 11:15:23.533354 - -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:15:23.921432 - -[25] Log opened at 2024-10-15 11:15:23.935441 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log opened at 2024-10-15 11:15:23.937873 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log opened at 2024-10-15 11:15:23.940223 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-15 11:15:24.149406 - -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:15:24.318606 - -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 11:15:24.674433 - -[27] Log opened at 2024-10-15 11:15:34.747425 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 11:15:36.070546 - -[27] Log opened at 2024-10-15 11:15:36.107854 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log opened at 2024-10-15 11:15:36.111931 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 11:15:36.138415 - -[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-15 11:15:36.543992 - -[28] Log opened at 2024-10-15 11:15:36.567484 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-15 11:15:36.568528 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log opened at 2024-10-15 11:15:36.569879 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[29] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:15:36.773162 - -[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-15 11:15:37.127457 - -[29] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[29] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[29] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-15 11:15:37.267919 - -[22] Log opened at 2024-10-15 11:16:08.560238 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:16:08.939262 - -[23] Log opened at 2024-10-15 11:16:08.958925 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:16:08.987556 - -[23] Log opened at 2024-10-15 11:16:08.995909 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:16:09.156033 - -[23] Log opened at 2024-10-15 11:16:10.086502 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:16:10.456689 - -[23] Log opened at 2024-10-15 11:16:10.475413 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:16:10.503083 - -[23] Log opened at 2024-10-15 11:16:10.511168 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:16:10.666187 - -[22] Log opened at 2024-10-15 11:16:40.656051 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:16:41.051951 - -[22] Log opened at 2024-10-15 11:16:41.076782 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:16:41.103989 - -[22] Log opened at 2024-10-15 11:16:41.119473 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:16:41.282019 - -[23] Log opened at 2024-10-15 11:16:57.626131 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:16:58.959077 - -[23] Log opened at 2024-10-15 11:16:59.026841 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log opened at 2024-10-15 11:16:59.031115 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:16:59.059066 - -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:16:59.471270 - -[24] Log opened at 2024-10-15 11:16:59.485503 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log opened at 2024-10-15 11:16:59.487675 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log opened at 2024-10-15 11:16:59.492171 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 11:16:59.711582 - -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:17:00.063536 - -[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-15 11:17:00.217141 - -[22] Log opened at 2024-10-15 11:18:38.252000 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:18:38.634159 - -[22] Log opened at 2024-10-15 11:18:38.657190 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:18:38.683910 - -[22] Log opened at 2024-10-15 11:18:38.698453 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:18:38.864688 - -[24] Log opened at 2024-10-15 11:19:48.751728 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:19:49.171372 - -[24] Log opened at 2024-10-15 11:19:49.195157 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:19:49.222610 - -[24] Log opened at 2024-10-15 11:19:49.231742 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:19:49.393132 - -[24] Log opened at 2024-10-15 11:19:51.746363 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:19:52.128306 - -[24] Log opened at 2024-10-15 11:19:52.148407 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:19:52.175529 - -[24] Log opened at 2024-10-15 11:19:52.183494 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. -[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. -[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. -[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. -[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 11:19:52.342306 - -[21] Log opened at 2024-10-15 11:20:04.201100 -[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21' -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] Log closed at 2024-10-15 11:20:05.198324 - -[21] Log opened at 2024-10-15 11:20:05.221756 -[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21' -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] Log closed at 2024-10-15 11:20:05.849478 - -[21] Log opened at 2024-10-15 11:20:05.858273 -[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21' -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[21] Log closed at 2024-10-15 11:20:06.619346 - -[22] Log opened at 2024-10-15 11:20:33.511263 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:20:33.903047 - -[22] Log opened at 2024-10-15 11:20:33.924157 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:20:33.951511 - -[22] Log opened at 2024-10-15 11:20:33.962451 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:20:34.124605 - -[23] Log opened at 2024-10-15 11:20:58.450452 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:20:58.846547 - -[23] Log opened at 2024-10-15 11:20:58.866566 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:20:58.893426 - -[23] Log opened at 2024-10-15 11:20:58.902245 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:20:59.059477 - -[23] Log opened at 2024-10-15 11:20:59.919858 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:21:00.307939 - -[23] Log opened at 2024-10-15 11:21:00.337052 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:21:00.364755 - -[23] Log opened at 2024-10-15 11:21:00.374239 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:21:00.529752 - -[22] Log opened at 2024-10-15 11:21:13.138908 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:21:13.524380 - -[22] Log opened at 2024-10-15 11:21:13.547196 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:21:13.576715 - -[22] Log opened at 2024-10-15 11:21:13.584854 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:21:13.745910 - -[23] Log opened at 2024-10-15 11:21:36.001480 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:21:36.387805 - -[23] Log opened at 2024-10-15 11:21:36.411814 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:21:36.439458 - -[23] Log opened at 2024-10-15 11:21:36.447913 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:21:36.607552 - -[23] Log opened at 2024-10-15 11:21:39.730216 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:21:41.031523 - -[25] Log opened at 2024-10-15 11:21:41.071412 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[23] Log opened at 2024-10-15 11:21:41.075899 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[25] [Step Debug] -> - -[25] Log closed at 2024-10-15 11:21:41.109541 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:21:41.519920 - -[25] Log opened at 2024-10-15 11:21:41.533047 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[26] Log opened at 2024-10-15 11:21:41.535363 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[23] Log opened at 2024-10-15 11:21:41.537116 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-15 11:21:41.753129 - -[25] [Step Debug] -> - -[25] Log closed at 2024-10-15 11:21:42.098694 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:21:42.249660 - -[24] Log opened at 2024-10-15 11:22:08.646971 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-15 11:22:09.970385 - -[24] Log opened at 2024-10-15 11:22:10.003255 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[27] Log opened at 2024-10-15 11:22:10.006318 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-15 11:22:10.035584 - -[27] [Step Debug] -> - -[27] Log closed at 2024-10-15 11:22:10.434079 - -[27] Log opened at 2024-10-15 11:22:10.446684 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[22] Log opened at 2024-10-15 11:22:10.451094 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-15 11:22:10.451288 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-15 11:22:10.664256 - -[27] [Step Debug] -> - -[27] Log closed at 2024-10-15 11:22:11.035282 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-15 11:22:11.179746 - -[22] Log opened at 2024-10-15 11:24:47.041647 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:24:47.489073 - -[22] Log opened at 2024-10-15 11:24:47.516068 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:24:47.555337 - -[22] Log opened at 2024-10-15 11:24:47.568943 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-15 11:24:47.582400 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:24:47.650979 - -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. -[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). -[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 11:24:47.748907 - -[22] Log opened at 2024-10-15 11:25:36.439146 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:25:37.423004 - -[22] Log opened at 2024-10-15 11:25:37.486200 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 11:25:38.245629 - -[23] Log opened at 2024-10-15 11:25:47.152464 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 2 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 3 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 4 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[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-10-15 11:25:47.599774 - -[23] Log opened at 2024-10-15 11:25:47.621401 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 2 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 3 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 4 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[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-10-15 11:25:47.718273 - -[23] Log opened at 2024-10-15 11:25:47.726838 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 2 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 3 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 4 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[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-10-15 11:25:47.938780 - -[23] Log opened at 2024-10-15 11:25:51.617790 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 2 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 3 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_list -i 4 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 9 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 10 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 11 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 12 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 13 -d 0 -c 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 14 -d 0 -c 2 -[23] [Step Debug] -> - -[23] [Step Debug] <- stop -i 15 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-15 11:25:59.921802 - -[25] Log opened at 2024-10-15 12:00:27.354662 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 12:00:29.486380 - -[25] Log opened at 2024-10-15 12:00:29.534599 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-15 12:00:29.535350 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-15 12:00:30.164812 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 12:00:30.570534 - -[26] Log opened at 2024-10-15 12:00:30.583272 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] Log opened at 2024-10-15 12:00:30.587310 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-15 12:00:30.587413 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 12:00:31.427806 - -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 12:00:31.761830 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-15 12:00:32.530846 - -[22] Log opened at 2024-10-15 12:00:47.711953 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 12:00:49.657623 - -[22] Log opened at 2024-10-15 12:00:49.695841 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-15 12:00:49.702596 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 12:00:50.326448 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 12:00:50.717480 - -[23] Log opened at 2024-10-15 12:00:50.730544 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-15 12:00:50.733354 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] Log opened at 2024-10-15 12:00:50.734491 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 12:00:51.558157 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 12:00:52.300321 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-15 12:00:52.649179 - -[24] Log opened at 2024-10-15 12:00:56.293292 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 12:00:58.200869 - -[24] Log opened at 2024-10-15 12:00:58.234653 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-15 12:00:58.237518 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 12:00:58.862915 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-15 12:00:59.276663 - -[24] Log opened at 2024-10-15 12:00:59.289967 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-15 12:00:59.294979 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-15 12:00:59.295749 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-15 12:01:00.110237 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-15 12:01:00.872794 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-15 12:01:01.228109 - -[30] Log opened at 2024-10-15 12:01:02.493789 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-15 12:01:04.423477 - -[30] Log opened at 2024-10-15 12:01:04.478944 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-15 12:01:04.522805 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-15 12:01:05.106952 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 12:01:05.546651 - -[27] Log opened at 2024-10-15 12:01:05.578472 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[25] Log opened at 2024-10-15 12:01:05.578472 -[26] Log opened at 2024-10-15 12:01:05.578513 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 12:01:06.407862 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 12:01:07.133175 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-15 12:01:07.472512 - -[31] Log opened at 2024-10-15 12:01:20.918822 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-15 12:01:21.783709 - -[31] Log opened at 2024-10-15 12:01:21.814532 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-15 12:01:22.667150 - -[30] Log opened at 2024-10-15 12:02:00.413291 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-15 12:02:02.385298 - -[30] Log opened at 2024-10-15 12:02:02.487347 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-15 12:02:02.522400 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-15 12:02:03.116589 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 12:02:03.598118 - -[28] Log opened at 2024-10-15 12:02:03.627636 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] Log opened at 2024-10-15 12:02:03.628957 -[26] Log opened at 2024-10-15 12:02:03.628961 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-15 12:02:04.450424 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-15 12:02:05.196367 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-15 12:02:05.553224 - -[27] Log opened at 2024-10-15 12:03:00.327065 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 12:03:02.324869 - -[27] Log opened at 2024-10-15 12:03:02.463527 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-15 12:03:02.498589 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 12:03:03.092913 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-15 12:03:03.555162 - -[34] Log opened at 2024-10-15 12:03:03.644952 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-15 12:03:03.688383 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] Log opened at 2024-10-15 12:03:03.694958 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-15 12:03:04.508475 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-15 12:03:05.265440 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-15 12:03:05.628664 - -[33] Log opened at 2024-10-15 12:03:27.993764 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-15 12:03:29.979531 - -[33] Log opened at 2024-10-15 12:03:30.114146 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-15 12:03:30.149870 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-15 12:03:30.742983 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-15 12:03:31.192981 - -[31] Log opened at 2024-10-15 12:03:31.216848 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] Log opened at 2024-10-15 12:03:31.293439 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] Log opened at 2024-10-15 12:03:31.294704 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-15 12:03:32.135987 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-15 12:03:32.898045 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-15 12:03:33.256894 - -[27] Log opened at 2024-10-15 12:03:33.322420 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] Log opened at 2024-10-15 12:03:33.327935 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] Log opened at 2024-10-15 12:03:33.334119 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-15 12:03:37.215833 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-15 12:03:40.333295 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-15 12:03:43.390479 - -[42] Log opened at 2024-10-17 09:05:14.372962 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-17 09:05:20.992056 - -[22] Log opened at 2024-10-17 09:05:25.649464 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-17 09:05:26.785513 - -[22] Log opened at 2024-10-17 09:05:26.797435 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-17 09:05:27.986618 - -[23] Log opened at 2024-10-17 09:05:28.100074 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-17 09:05:28.770359 - -[274] Log opened at 2024-10-17 09:05:28.895538 -[274] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.274' -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log closed at 2024-10-17 09:05:29.770046 - -[274] Log opened at 2024-10-17 09:05:30.928975 -[274] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.274' -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log closed at 2024-10-17 09:05:32.825303 - -[274] Log opened at 2024-10-17 09:05:32.841005 -[274] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.274' -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log closed at 2024-10-17 09:05:34.334097 - -[274] Log opened at 2024-10-17 09:05:34.402469 -[274] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.274' -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log closed at 2024-10-17 09:05:35.048595 - -[274] Log opened at 2024-10-17 09:05:35.125217 -[274] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.274' -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-17 09:05:35.152749 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-17 09:05:36.070773 - -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log closed at 2024-10-17 09:05:37.314001 - -[24] Log opened at 2024-10-17 09:06:06.362406 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-17 09:06:09.701453 - -[24] Log opened at 2024-10-17 09:06:09.843008 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 09:06:09.874096 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-17 09:06:10.500811 - -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 09:06:11.423536 - -[22] Log opened at 2024-10-17 09:06:11.459036 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] Log opened at 2024-10-17 09:06:11.465907 -[274] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.274' -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 09:06:11.470203 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log closed at 2024-10-17 09:06:12.461683 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 09:06:12.977474 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-17 09:06:14.204899 - -[277] Log opened at 2024-10-17 09:06:37.681960 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] Log opened at 2024-10-17 09:06:37.773075 -[279] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.279' -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-17 09:06:38.971286 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 09:06:39.050423 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-17 09:06:39.232841 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log opened at 2024-10-17 09:06:39.310126 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 09:06:39.370310 - -[23] Log opened at 2024-10-17 09:06:39.374988 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log opened at 2024-10-17 09:06:39.553568 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log opened at 2024-10-17 09:06:39.651964 -[274] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.274' -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log opened at 2024-10-17 09:06:39.768075 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] Log opened at 2024-10-17 09:06:39.849982 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] Log closed at 2024-10-17 09:06:40.116465 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-17 09:06:40.787597 - -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 09:06:41.410439 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-17 09:06:42.018746 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-17 09:06:42.622396 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-17 09:06:43.254933 - -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 09:06:43.875489 - -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[274] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[274] Log closed at 2024-10-17 09:06:44.480324 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] Log opened at 2024-10-17 09:06:45.065816 -[279] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.279' -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 09:06:45.110581 - -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 09:06:45.722496 - -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] Log closed at 2024-10-17 09:06:46.260862 - -[279] Log opened at 2024-10-17 09:06:46.272637 -[279] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.279' -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] Log closed at 2024-10-17 09:06:47.382805 - -[285] Log opened at 2024-10-17 09:09:38.211457 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 09:09:40.583289 - -[285] Log opened at 2024-10-17 09:09:40.759515 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-17 09:09:40.819197 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 09:09:41.420024 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-17 09:09:42.064517 - -[24] Log opened at 2024-10-17 09:09:42.117599 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 09:09:42.229839 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-17 09:09:42.256099 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 09:09:43.279454 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-17 09:09:44.005742 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-17 09:09:44.337148 - -[282] Log opened at 2024-10-17 09:09:45.287480 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 09:09:46.538763 - -[277] Log opened at 2024-10-17 09:10:05.717183 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 09:10:08.150278 - -[277] Log opened at 2024-10-17 09:10:08.353794 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] Log opened at 2024-10-17 09:10:08.421699 -[279] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.279' -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 09:10:09.009053 - -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] Log closed at 2024-10-17 09:10:09.663152 - -[286] Log opened at 2024-10-17 09:10:09.737258 -[286] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.286' -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-17 09:10:09.849017 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 09:10:09.855402 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-17 09:10:10.916690 - -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] Log closed at 2024-10-17 09:10:11.654972 - -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 09:10:11.989464 - -[23] Log opened at 2024-10-17 09:10:43.515544 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-17 09:10:44.750695 - -[23] Log opened at 2024-10-17 09:10:46.247894 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-17 09:10:47.332235 - -[26] Log opened at 2024-10-17 09:12:17.440761 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 09:12:19.936172 - -[26] Log opened at 2024-10-17 09:12:20.181287 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] Log opened at 2024-10-17 09:12:20.238473 -[287] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.287' -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 09:12:20.836721 - -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[287] Log closed at 2024-10-17 09:12:21.444936 - -[277] Log opened at 2024-10-17 09:12:21.526031 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] Log opened at 2024-10-17 09:12:21.606400 -[276] Log opened at 2024-10-17 09:12:21.606401 -[279] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.279' -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 09:12:22.647650 - -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 09:12:23.411032 - -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] Log closed at 2024-10-17 09:12:23.777554 - -[24] Log opened at 2024-10-17 09:12:29.045631 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 09:12:29.138270 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-17 09:12:30.257927 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 09:12:30.703959 - -[277] Log opened at 2024-10-17 09:13:03.097480 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 09:13:05.503578 - -[277] Log opened at 2024-10-17 09:13:05.731611 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] Log opened at 2024-10-17 09:13:05.789329 -[279] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.279' -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 09:13:06.392221 - -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[279] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[279] Log closed at 2024-10-17 09:13:06.972816 - -[287] Log opened at 2024-10-17 09:13:07.023983 -[287] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.287' -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] Log opened at 2024-10-17 09:13:07.064689 -[286] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.286' -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 09:13:07.065378 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] Log closed at 2024-10-17 09:13:08.108355 - -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[287] Log closed at 2024-10-17 09:13:08.849230 - -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 09:13:09.193109 - -[282] Log opened at 2024-10-17 09:13:28.655308 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 09:13:31.090615 - -[282] Log opened at 2024-10-17 09:13:31.315713 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] Log opened at 2024-10-17 09:13:31.374413 -[287] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.287' -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 09:13:31.976721 - -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[287] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[287] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[287] Log closed at 2024-10-17 09:13:32.697896 - -[288] Log opened at 2024-10-17 09:13:32.741786 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 09:13:32.790058 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 09:13:32.792519 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 09:13:33.833382 - -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 09:13:34.596800 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 09:13:34.957778 - -[276] Log opened at 2024-10-17 09:13:57.282213 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 09:13:59.653270 - -[276] Log opened at 2024-10-17 09:13:59.866347 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] Log opened at 2024-10-17 09:13:59.926508 -[290] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.290' -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 09:14:00.526803 - -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] Log closed at 2024-10-17 09:14:01.143241 - -[285] Log opened at 2024-10-17 09:14:01.193645 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 09:14:01.226010 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] Log opened at 2024-10-17 09:14:01.233955 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 09:14:02.218542 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 09:14:02.938548 - -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 09:14:03.281273 - -[289] Log opened at 2024-10-17 09:14:10.020068 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 09:14:11.238493 - -[26] Log opened at 2024-10-17 09:14:27.660176 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 09:14:28.794572 - -[286] Log opened at 2024-10-17 09:44:42.104729 -[286] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.286' -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[286] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[286] Log closed at 2024-10-17 09:44:43.316056 - -[291] Log opened at 2024-10-17 09:44:53.870987 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 09:44:56.947448 - -[285] Log opened at 2024-10-17 09:45:08.817965 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 09:45:11.814283 - -[277] Log opened at 2024-10-17 10:15:14.871287 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 10:15:17.332241 - -[277] Log opened at 2024-10-17 10:15:17.584014 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] Log opened at 2024-10-17 10:15:17.587230 -[290] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.290' -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 10:15:18.249407 - -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 10:15:18.606573 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] Log closed at 2024-10-17 10:15:18.859645 - -[288] Log opened at 2024-10-17 10:15:18.900861 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 10:15:18.999885 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 10:15:19.000568 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:15:19.592256 - -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:15:20.105493 - -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 10:15:20.809678 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:15:21.146625 - -[291] Log opened at 2024-10-17 10:15:52.062175 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] -> - -[291] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 -[291] [Step Debug] -> - -[291] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 -[291] [Step Debug] -> - -[291] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 -[291] [Step Debug] -> - -[291] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 -[291] [Step Debug] -> - -[291] [Step Debug] <- feature_set -i 5 -n max_children -v 100 -[291] [Step Debug] -> - -[291] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 -[291] [Step Debug] -> - -[291] [Step Debug] <- run -i 7 -[291] [Step Debug] -> - -[291] [Step Debug] -> - -[291] [Step Debug] <- stack_get -i 8 -[291] [Step Debug] -> - -[291] [Step Debug] <- context_names -i 9 -d 0 -[291] [Step Debug] -> - -[291] [Step Debug] <- context_get -i 10 -d 0 -c 0 -[291] [Step Debug] -> - -[291] [Step Debug] <- breakpoint_remove -i 11 -d 2910001 -[291] [Step Debug] -> - -[291] [Step Debug] <- run -i 12 -[291] [Step Debug] -> - -[291] [Step Debug] <- stop -i 13 -[291] [Step Debug] -> - -[291] Log closed at 2024-10-17 10:15:59.415760 - -[291] Log opened at 2024-10-17 10:15:59.629335 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:15:59.634194 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[292] Log opened at 2024-10-17 10:15:59.639397 -[292] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.292' -[292] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[292] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[292] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] Log closed at 2024-10-17 10:16:00.301447 - -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:16:00.588596 - -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:16:00.962132 - -[276] Log opened at 2024-10-17 10:16:01.015636 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[292] Log opened at 2024-10-17 10:16:01.151502 -[292] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.292' -[292] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] Log opened at 2024-10-17 10:16:01.155159 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[292] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[292] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[292] Log closed at 2024-10-17 10:16:02.268460 - -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:16:03.029136 - -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 10:16:03.374959 - -[26] Log opened at 2024-10-17 10:18:41.759063 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:18:44.115288 - -[26] Log opened at 2024-10-17 10:18:44.336754 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:18:44.417480 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:18:45.027455 - -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:18:45.720258 - -[285] Log opened at 2024-10-17 10:18:45.777475 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:18:45.886241 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] Log opened at 2024-10-17 10:18:45.893586 -[290] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.290' -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:18:47.047337 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:18:47.757738 - -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[290] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[290] Log closed at 2024-10-17 10:18:48.109353 - -[277] Log opened at 2024-10-17 10:18:48.187739 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 10:18:49.401714 - -[277] Log opened at 2024-10-17 10:18:53.708566 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 10:18:54.825896 - -[288] Log opened at 2024-10-17 10:19:06.831091 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 10:19:09.737114 - -[289] Log opened at 2024-10-17 10:19:27.841673 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:19:30.190590 - -[289] Log opened at 2024-10-17 10:19:30.392656 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:19:30.440142 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:19:31.061862 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:19:31.671392 - -[26] Log opened at 2024-10-17 10:19:31.763260 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:19:31.874570 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:19:31.880597 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:19:33.011536 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:19:33.683654 - -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:19:34.033952 - -[293] Log opened at 2024-10-17 10:19:35.585905 -[293] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.293' -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] Log closed at 2024-10-17 10:19:36.774667 - -[293] Log opened at 2024-10-17 10:19:38.105737 -[293] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.293' -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] Log closed at 2024-10-17 10:19:39.210988 - -[277] Log opened at 2024-10-17 10:19:49.126905 -[277] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.277' -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[277] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[277] Log closed at 2024-10-17 10:19:52.126126 - -[288] Log opened at 2024-10-17 10:20:25.999038 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 10:20:29.023284 - -[26] Log opened at 2024-10-17 10:21:08.385283 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:21:10.770390 - -[26] Log opened at 2024-10-17 10:21:10.988696 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:21:11.047005 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:21:11.646900 - -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:21:12.283028 - -[289] Log opened at 2024-10-17 10:21:12.358507 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:21:12.503991 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] Log opened at 2024-10-17 10:21:12.540566 -[293] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.293' -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:21:13.559406 - -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:21:14.289690 - -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] Log closed at 2024-10-17 10:21:14.642584 - -[288] Log opened at 2024-10-17 10:21:30.425330 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 10:21:31.619923 - -[288] Log opened at 2024-10-17 10:21:34.734662 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 10:21:35.834891 - -[282] Log opened at 2024-10-17 10:21:50.864342 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[294] Log opened at 2024-10-17 10:21:50.871897 -[294] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.294' -[294] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] Log opened at 2024-10-17 10:21:50.881766 -[295] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.295' -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[294] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:21:53.799983 - -[294] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[294] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[294] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[294] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[294] Log closed at 2024-10-17 10:21:56.163345 - -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] Log closed at 2024-10-17 10:21:58.499126 - -[289] Log opened at 2024-10-17 10:22:04.854035 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:22:07.364336 - -[285] Log opened at 2024-10-17 10:25:57.199472 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:25:59.606563 - -[285] Log opened at 2024-10-17 10:25:59.832168 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:25:59.833386 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:26:00.488206 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:26:01.043774 - -[285] Log opened at 2024-10-17 10:26:01.287375 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:26:01.342195 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] Log opened at 2024-10-17 10:26:01.369432 -[293] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.293' -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:26:02.378530 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:26:03.110417 - -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[293] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[293] Log closed at 2024-10-17 10:26:03.460715 - -[276] Log opened at 2024-10-17 10:26:05.645572 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:26:06.846430 - -[276] Log opened at 2024-10-17 10:26:07.876890 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:26:08.967371 - -[282] Log opened at 2024-10-17 10:26:20.070707 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:26:22.819157 - -[295] Log opened at 2024-10-17 10:29:32.819021 -[295] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.295' -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] Log closed at 2024-10-17 10:29:35.248997 - -[295] Log opened at 2024-10-17 10:29:35.475310 -[295] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.295' -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] Log opened at 2024-10-17 10:29:35.576919 -[288] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.288' -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] Log closed at 2024-10-17 10:29:36.235799 - -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[288] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[288] Log closed at 2024-10-17 10:29:36.869804 - -[26] Log opened at 2024-10-17 10:29:37.184749 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log opened at 2024-10-17 10:29:37.461742 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:29:37.465833 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:29:38.597297 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:29:39.335171 - -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:29:39.685855 - -[282] Log opened at 2024-10-17 10:29:54.440288 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:29:56.875283 - -[282] Log opened at 2024-10-17 10:29:57.081839 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 10:29:57.133891 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:29:57.752622 - -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:29:58.361223 - -[26] Log opened at 2024-10-17 10:29:58.776113 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[294] Log opened at 2024-10-17 10:29:58.802804 -[294] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.294' -[294] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] Log opened at 2024-10-17 10:29:58.810532 -[296] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.296' -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[294] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[294] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[294] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[294] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[294] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[294] Log closed at 2024-10-17 10:29:59.880951 - -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] Log closed at 2024-10-17 10:30:00.216766 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:30:00.938786 - -[285] Log opened at 2024-10-17 10:30:09.648628 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:30:12.043530 - -[285] Log opened at 2024-10-17 10:30:12.283937 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:30:12.392409 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:30:12.957633 - -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:30:13.688424 - -[26] Log opened at 2024-10-17 10:30:13.843343 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] Log opened at 2024-10-17 10:30:13.915963 -[295] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.295' -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 10:30:13.942552 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] Log closed at 2024-10-17 10:30:14.966856 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:30:15.677639 - -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:30:16.017946 - -[295] Log opened at 2024-10-17 10:30:16.140816 -[295] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.295' -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 10:30:16.152096 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] Log opened at 2024-10-17 10:30:16.163553 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:30:20.672266 - -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[295] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[295] Log closed at 2024-10-17 10:30:24.752392 - -[289] Log opened at 2024-10-17 10:30:27.329158 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:30:28.859355 - -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:30:32.129744 - -[289] Log opened at 2024-10-17 10:30:35.815274 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:30:36.939337 - -[289] Log opened at 2024-10-17 10:30:38.052446 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:30:41.929496 - -[291] Log opened at 2024-10-17 10:31:32.792856 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:31:35.215588 - -[291] Log opened at 2024-10-17 10:31:35.526037 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 10:31:35.593670 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:31:36.207509 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:31:36.872853 - -[276] Log opened at 2024-10-17 10:31:37.657881 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:31:37.792664 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[282] Log opened at 2024-10-17 10:31:37.792577 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:31:39.035194 - -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:31:39.739920 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:31:40.434155 - -[282] Log opened at 2024-10-17 10:31:42.203371 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:31:42.227386 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[298] Log opened at 2024-10-17 10:31:42.250048 -[298] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.298' -[298] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[298] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:31:47.009497 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:31:50.710257 - -[298] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[298] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[298] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[298] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[298] Log closed at 2024-10-17 10:31:54.311213 - -[298] Log opened at 2024-10-17 10:31:59.170787 -[298] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.298' -[298] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[298] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[298] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[298] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[298] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[298] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[298] Log closed at 2024-10-17 10:32:04.025150 - -[296] Log opened at 2024-10-17 10:33:11.062590 -[296] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.296' -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] Log closed at 2024-10-17 10:33:13.405000 - -[296] Log opened at 2024-10-17 10:33:13.640470 -[296] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.296' -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:33:13.699736 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] Log closed at 2024-10-17 10:33:14.299232 - -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:33:14.903207 - -[299] Log opened at 2024-10-17 10:33:15.355653 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 10:33:15.409063 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[26] Log opened at 2024-10-17 10:33:15.409298 -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:33:16.422042 - -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:33:17.148627 - -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:33:17.500805 - -[26] Log opened at 2024-10-17 10:33:17.612783 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 10:33:17.622576 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] Log opened at 2024-10-17 10:33:17.634894 -[276] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.276' -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:33:22.098168 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:33:22.428532 - -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[276] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[276] Log closed at 2024-10-17 10:33:25.909470 - -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:33:29.402114 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:33:33.569610 - -[285] Log opened at 2024-10-17 10:33:35.220906 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:33:39.905316 - -[289] Log opened at 2024-10-17 10:34:09.922318 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:34:12.260314 - -[289] Log opened at 2024-10-17 10:34:12.543523 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] Log opened at 2024-10-17 10:34:12.647372 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:34:13.245855 - -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:34:13.964766 - -[300] Log opened at 2024-10-17 10:34:14.343242 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] Log opened at 2024-10-17 10:34:14.490847 -[296] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.296' -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:34:14.491010 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] Log closed at 2024-10-17 10:34:15.555984 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:34:16.285853 - -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:34:16.639781 - -[296] Log opened at 2024-10-17 10:34:18.438196 -[296] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.296' -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:34:18.446082 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] Log opened at 2024-10-17 10:34:18.461231 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:34:23.076375 - -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[296] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[296] Log closed at 2024-10-17 10:34:27.010460 - -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:34:31.181552 - -[282] Log opened at 2024-10-17 10:35:23.766198 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:35:28.267467 - -[297] Log opened at 2024-10-17 10:38:20.467288 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:38:22.867592 - -[297] Log opened at 2024-10-17 10:38:23.151720 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 10:38:23.221870 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:38:23.808870 - -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:38:24.508965 - -[26] Log opened at 2024-10-17 10:38:24.876077 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log opened at 2024-10-17 10:38:25.289400 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:38:25.289609 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:38:26.494290 - -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:38:27.035569 - -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:38:27.360319 - -[291] Log opened at 2024-10-17 10:38:27.492473 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:38:27.508051 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[301] Log opened at 2024-10-17 10:38:27.522215 -[301] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.301' -[301] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[301] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:38:31.963162 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:38:35.962974 - -[301] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[301] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[301] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[301] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[301] Log closed at 2024-10-17 10:38:39.922347 - -[299] Log opened at 2024-10-17 10:38:56.842876 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:39:01.211107 - -[285] Log opened at 2024-10-17 10:39:49.189372 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:39:51.578330 - -[285] Log opened at 2024-10-17 10:39:51.838144 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] Log opened at 2024-10-17 10:39:51.893635 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:39:52.537628 - -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:39:53.195593 - -[26] Log opened at 2024-10-17 10:39:53.605563 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 10:39:53.688912 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 10:39:53.704901 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:39:54.925177 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:39:55.650183 - -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:39:55.995462 - -[302] Log opened at 2024-10-17 10:39:56.119060 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 10:39:56.132968 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] Log opened at 2024-10-17 10:39:56.146376 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:40:00.490470 - -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:40:04.497465 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:40:08.125185 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:40:08.283339 - -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:40:12.507966 - -[299] Log opened at 2024-10-17 10:40:18.882788 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 10:40:23.594273 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:40:23.742925 - -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:40:24.750228 - -[303] Log opened at 2024-10-17 10:40:25.322297 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 10:40:25.331267 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:40:26.425848 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:40:27.178356 - -[26] Log opened at 2024-10-17 10:40:27.615716 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:40:29.986939 - -[26] Log opened at 2024-10-17 10:40:30.146934 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:40:31.460632 - -[26] Log opened at 2024-10-17 10:40:31.530561 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log opened at 2024-10-17 10:40:31.765109 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 10:40:31.877973 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:40:32.831079 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:40:33.558453 - -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:40:33.909994 - -[291] Log opened at 2024-10-17 10:40:35.617676 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] Log opened at 2024-10-17 10:40:35.633616 -[289] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.289' -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] Log opened at 2024-10-17 10:40:35.669797 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[289] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[289] Log closed at 2024-10-17 10:40:40.043563 - -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:40:44.000396 - -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:40:47.702586 - -[300] Log opened at 2024-10-17 10:42:01.913807 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:42:04.350697 - -[300] Log opened at 2024-10-17 10:42:04.621416 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 10:42:04.702879 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:42:05.283183 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:42:05.980295 - -[303] Log opened at 2024-10-17 10:42:06.541473 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] Log opened at 2024-10-17 10:42:06.649138 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] Log opened at 2024-10-17 10:42:06.652583 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:42:07.719861 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:42:08.397151 - -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:42:08.731127 - -[282] Log opened at 2024-10-17 10:42:08.850449 -[282] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.282' -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] Log opened at 2024-10-17 10:42:08.861264 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 10:42:08.873249 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:42:13.105471 - -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:42:17.129793 - -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[282] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[282] Log closed at 2024-10-17 10:42:21.222058 - -[291] Log opened at 2024-10-17 10:42:24.950340 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:42:29.936485 - -[302] Log opened at 2024-10-17 10:42:39.746544 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:42:42.195893 - -[302] Log opened at 2024-10-17 10:42:42.440099 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:42:42.488918 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:42:43.143397 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:42:43.876897 - -[299] Log opened at 2024-10-17 10:42:44.130575 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] Log opened at 2024-10-17 10:42:44.185194 -[304] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.304' -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] Log opened at 2024-10-17 10:42:44.251436 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] Log closed at 2024-10-17 10:42:45.338447 - -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:42:46.108118 - -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:42:46.459677 - -[304] Log opened at 2024-10-17 10:42:46.579011 -[304] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.304' -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] Log opened at 2024-10-17 10:42:46.586517 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:42:46.598883 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log opened at 2024-10-17 10:42:50.538020 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] Log closed at 2024-10-17 10:42:51.182300 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:42:55.271698 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:42:59.572419 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:43:03.536060 - -[26] Log opened at 2024-10-17 10:43:05.228275 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:43:09.966677 - -[297] Log opened at 2024-10-17 10:43:47.183666 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:43:49.553108 - -[297] Log opened at 2024-10-17 10:43:49.895953 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[305] Log opened at 2024-10-17 10:43:49.957464 -[305] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.305' -[305] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[305] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:43:50.556199 - -[305] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[305] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[305] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[305] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[305] Log closed at 2024-10-17 10:43:51.230131 - -[304] Log opened at 2024-10-17 10:43:51.451338 -[304] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.304' -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log opened at 2024-10-17 10:43:51.667116 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] Log opened at 2024-10-17 10:43:51.728129 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log opened at 2024-10-17 10:43:52.300234 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:43:52.746257 - -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] Log closed at 2024-10-17 10:43:53.485766 - -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:43:53.822270 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:43:55.595296 - -[300] Log opened at 2024-10-17 10:43:55.819158 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] Log opened at 2024-10-17 10:43:55.901135 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:43:56.478471 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:43:57.154048 - -[26] Log opened at 2024-10-17 10:43:57.485498 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] Log opened at 2024-10-17 10:43:57.659514 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log opened at 2024-10-17 10:43:57.693936 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:43:58.690493 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:43:59.448629 - -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:43:59.811020 - -[291] Log opened at 2024-10-17 10:43:59.939729 -[291] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.291' -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 10:43:59.951253 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[291] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[291] Log closed at 2024-10-17 10:44:04.721973 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:44:08.705193 - -[297] Log opened at 2024-10-17 10:45:22.591295 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:45:27.117684 - -[304] Log opened at 2024-10-17 10:46:11.304352 -[304] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.304' -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] Log closed at 2024-10-17 10:46:13.749896 - -[304] Log opened at 2024-10-17 10:46:13.984947 -[304] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.304' -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] Log opened at 2024-10-17 10:46:14.059024 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] Log closed at 2024-10-17 10:46:14.665307 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:46:15.368926 - -[300] Log opened at 2024-10-17 10:46:15.556254 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] Log opened at 2024-10-17 10:46:15.716453 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log opened at 2024-10-17 10:46:15.767550 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:46:16.860382 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:46:17.627253 - -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:46:18.005303 - -[299] Log opened at 2024-10-17 10:46:18.118846 -[299] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.299' -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] Log opened at 2024-10-17 10:46:18.140810 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:46:22.545059 - -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[299] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[299] Log closed at 2024-10-17 10:46:26.445291 - -[302] Log opened at 2024-10-17 10:46:48.095842 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:46:52.595722 - -[285] Log opened at 2024-10-17 10:49:06.370128 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:49:08.663948 - -[285] Log opened at 2024-10-17 10:49:08.897900 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[307] Log opened at 2024-10-17 10:49:08.944912 -[307] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.307' -[307] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[307] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:49:09.560942 - -[307] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[307] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[307] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[307] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[307] Log closed at 2024-10-17 10:49:10.114858 - -[303] Log opened at 2024-10-17 10:49:10.487959 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-17 10:49:10.591988 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] Log opened at 2024-10-17 10:49:10.593085 -[304] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.304' -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:49:11.600237 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:49:12.298102 - -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[304] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[304] Log closed at 2024-10-17 10:49:12.653076 - -[26] Log opened at 2024-10-17 10:49:12.818357 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:49:17.486548 - -[26] Log opened at 2024-10-17 10:49:18.937315 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:49:23.602741 - -[297] Log opened at 2024-10-17 10:50:07.982582 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:50:10.252996 - -[297] Log opened at 2024-10-17 10:50:10.488401 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] Log opened at 2024-10-17 10:50:10.548154 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:50:11.145204 - -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:50:11.744399 - -[300] Log opened at 2024-10-17 10:50:11.984117 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:50:12.144676 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[307] Log opened at 2024-10-17 10:50:12.160857 -[307] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.307' -[307] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[307] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:50:13.184647 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[307] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:50:13.930291 - -[307] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[307] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[307] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[307] Log closed at 2024-10-17 10:50:14.293539 - -[285] Log opened at 2024-10-17 10:50:14.529598 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:50:18.725932 - -[285] Log opened at 2024-10-17 10:50:22.464137 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:50:26.872453 - -[26] Log opened at 2024-10-17 10:50:48.905668 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:50:53.559252 - -[306] Log opened at 2024-10-17 10:51:17.357227 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:51:21.938505 - -[309] Log opened at 2024-10-17 10:52:03.319365 -[309] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.309' -[309] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[309] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[309] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[309] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[309] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[309] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[309] Log closed at 2024-10-17 10:52:05.683928 - -[309] Log opened at 2024-10-17 10:52:05.840748 -[309] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.309' -[309] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:52:05.846451 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[309] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[309] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[309] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[309] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:52:06.468588 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[309] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[309] Log closed at 2024-10-17 10:52:06.496809 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:52:07.011206 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:52:08.798871 - -[285] Log opened at 2024-10-17 10:52:09.030192 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 10:52:09.093233 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:52:09.689886 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:52:10.341888 - -[26] Log opened at 2024-10-17 10:52:10.435146 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] Log opened at 2024-10-17 10:52:10.578313 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] Log opened at 2024-10-17 10:52:10.589372 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:52:11.645709 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-17 10:52:12.353126 - -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:52:12.711440 - -[297] Log opened at 2024-10-17 10:52:12.845740 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] Log opened at 2024-10-17 10:52:12.854696 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] Log opened at 2024-10-17 10:52:12.865224 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:52:17.128759 - -[308] Log opened at 2024-10-17 10:52:17.950002 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:52:20.751504 - -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:52:24.676737 - -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:52:28.352691 - -[308] Log opened at 2024-10-17 10:52:30.843271 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:52:35.677509 - -[310] Log opened at 2024-10-17 10:53:15.931116 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 10:53:18.167909 - -[310] Log opened at 2024-10-17 10:53:18.396987 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:53:18.451619 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 10:53:19.058178 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:53:19.644447 - -[302] Log opened at 2024-10-17 10:53:19.973356 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log opened at 2024-10-17 10:53:20.191554 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] Log opened at 2024-10-17 10:53:20.191986 -[297] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.297' -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:53:21.260816 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:53:21.971349 - -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[297] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[297] Log closed at 2024-10-17 10:53:22.320047 - -[306] Log opened at 2024-10-17 10:53:22.464579 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:53:26.713485 - -[306] Log opened at 2024-10-17 10:53:30.467866 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:53:34.661873 - -[308] Log opened at 2024-10-17 10:55:31.097174 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:55:33.436219 - -[308] Log opened at 2024-10-17 10:55:33.827509 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:55:33.892057 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:55:34.485228 - -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:55:35.184911 - -[285] Log opened at 2024-10-17 10:55:35.782875 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 10:55:35.897279 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] Log opened at 2024-10-17 10:55:35.900156 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:55:36.968371 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:55:37.667506 - -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 10:55:38.058891 - -[302] Log opened at 2024-10-17 10:55:38.170944 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] Log opened at 2024-10-17 10:55:38.181697 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 10:55:38.192248 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 10:55:42.539178 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:55:46.292412 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 10:55:50.518239 - -[310] Log opened at 2024-10-17 10:55:51.629615 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 10:55:55.768971 - -[303] Log opened at 2024-10-17 10:57:16.641142 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:57:19.016248 - -[303] Log opened at 2024-10-17 10:57:19.221094 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] Log opened at 2024-10-17 10:57:19.281939 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:57:19.887294 - -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:57:20.541478 - -[303] Log opened at 2024-10-17 10:57:20.985645 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] Log opened at 2024-10-17 10:57:21.021313 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:57:21.022195 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:57:22.057830 - -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:57:22.377559 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:57:23.141842 - -[285] Log opened at 2024-10-17 10:57:24.513374 -[285] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.285' -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:57:24.522719 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] Log opened at 2024-10-17 10:57:24.534238 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log opened at 2024-10-17 10:57:27.725188 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:57:29.011710 - -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[285] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[285] Log closed at 2024-10-17 10:57:33.189206 - -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 10:57:37.141793 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:57:41.062384 - -[302] Log opened at 2024-10-17 10:57:42.997865 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:57:47.392155 - -[306] Log opened at 2024-10-17 10:58:35.892461 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:58:38.117351 - -[306] Log opened at 2024-10-17 10:58:38.345141 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[312] Log opened at 2024-10-17 10:58:38.399131 -[312] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.312' -[312] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[312] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:58:39.003448 - -[312] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[312] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[312] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[312] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[312] Log closed at 2024-10-17 10:58:39.587029 - -[306] Log opened at 2024-10-17 10:58:40.836245 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] Log opened at 2024-10-17 10:58:41.024400 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] Log opened at 2024-10-17 10:58:41.024705 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 10:58:42.023618 - -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:58:42.759651 - -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 10:58:43.092912 - -[313] Log opened at 2024-10-17 10:58:43.283807 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 10:58:47.785550 - -[313] Log opened at 2024-10-17 10:58:50.298104 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 10:58:54.899711 - -[302] Log opened at 2024-10-17 10:59:52.894864 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:59:55.209915 - -[302] Log opened at 2024-10-17 10:59:55.407721 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[314] Log opened at 2024-10-17 10:59:55.464685 -[314] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.314' -[314] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[314] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 10:59:56.069593 - -[314] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[314] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[314] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[314] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[314] Log closed at 2024-10-17 10:59:56.674661 - -[303] Log opened at 2024-10-17 10:59:57.117647 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] Log opened at 2024-10-17 10:59:57.194736 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:59:57.201752 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 10:59:58.197692 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 10:59:58.927441 - -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 10:59:59.276280 - -[306] Log opened at 2024-10-17 10:59:59.383337 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] Log opened at 2024-10-17 10:59:59.393609 -[300] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.300' -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 10:59:59.404891 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[300] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[300] Log closed at 2024-10-17 11:00:03.612511 - -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 11:00:07.924730 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 11:00:12.425949 - -[310] Log opened at 2024-10-17 11:00:13.991314 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 11:00:18.523074 - -[313] Log opened at 2024-10-17 11:00:49.364032 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:00:51.640165 - -[313] Log opened at 2024-10-17 11:00:51.863543 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[314] Log opened at 2024-10-17 11:00:51.920210 -[314] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.314' -[314] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[314] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:00:52.523537 - -[314] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[314] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[314] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[314] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[314] Log closed at 2024-10-17 11:00:53.134038 - -[302] Log opened at 2024-10-17 11:00:53.571320 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] Log opened at 2024-10-17 11:00:53.653934 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] Log opened at 2024-10-17 11:00:53.653985 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 11:00:54.830031 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 11:00:55.537147 - -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 11:00:55.881386 - -[315] Log opened at 2024-10-17 11:00:56.050379 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] Log opened at 2024-10-17 11:00:56.060759 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] Log opened at 2024-10-17 11:00:56.067536 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 11:01:00.264591 - -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 11:01:04.235916 - -[311] Log opened at 2024-10-17 11:01:05.044233 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 11:01:07.964143 - -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 11:01:11.966015 - -[306] Log opened at 2024-10-17 11:52:06.171521 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 11:52:08.709652 - -[306] Log opened at 2024-10-17 11:52:08.941329 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 11:52:08.972464 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 11:52:09.604073 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 11:52:10.285456 - -[302] Log opened at 2024-10-17 11:52:10.576809 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log opened at 2024-10-17 11:52:10.843491 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] Log opened at 2024-10-17 11:52:10.843686 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:52:12.008530 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 11:52:12.725439 - -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 11:52:13.077037 - -[313] Log opened at 2024-10-17 11:52:13.197877 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] Log opened at 2024-10-17 11:52:13.203674 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] Log opened at 2024-10-17 11:52:13.218372 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:52:17.782070 - -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 11:52:21.624669 - -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 11:52:25.657497 - -[303] Log opened at 2024-10-17 11:52:37.670182 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 11:52:40.138257 - -[303] Log opened at 2024-10-17 11:52:40.257396 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] Log opened at 2024-10-17 11:52:40.266931 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 11:52:40.904012 - -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 11:52:41.541399 - -[315] Log opened at 2024-10-17 11:52:41.650909 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] Log opened at 2024-10-17 11:52:41.820777 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] Log opened at 2024-10-17 11:52:41.822222 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 11:52:42.888966 - -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 11:52:43.562503 - -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 11:52:43.898715 - -[311] Log opened at 2024-10-17 11:52:44.020251 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] Log opened at 2024-10-17 11:52:44.027675 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 11:52:44.042085 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 11:52:48.442645 - -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 11:52:52.000859 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 11:52:55.836535 - -[313] Log opened at 2024-10-17 11:53:29.682554 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:53:30.895815 - -[313] Log opened at 2024-10-17 11:53:33.461599 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:53:34.556666 - -[313] Log opened at 2024-10-17 11:53:38.437714 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:53:39.591970 - -[313] Log opened at 2024-10-17 11:53:40.513609 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:53:41.642808 - -[313] Log opened at 2024-10-17 11:53:41.670123 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 11:53:46.220603 - -[306] Log opened at 2024-10-17 11:54:21.709556 -[306] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.306' -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[306] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[306] Log closed at 2024-10-17 11:54:25.897313 - -[315] Log opened at 2024-10-17 11:54:40.842959 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 11:54:42.033199 - -[316] Log opened at 2024-10-17 11:55:19.610822 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 11:55:24.290415 - -[311] Log opened at 2024-10-17 12:03:15.673739 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:03:18.086749 - -[311] Log opened at 2024-10-17 12:03:18.314627 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] Log opened at 2024-10-17 12:03:18.386826 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:03:18.975719 - -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 12:03:19.600181 - -[310] Log opened at 2024-10-17 12:03:19.907341 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] Log opened at 2024-10-17 12:03:20.055601 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 12:03:20.077142 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:03:21.093647 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:03:21.779221 - -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:03:22.121448 - -[315] Log opened at 2024-10-17 12:03:29.939744 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 12:03:29.957885 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:03:34.578755 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:03:38.098496 - -[316] Log opened at 2024-10-17 12:03:39.313580 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:03:40.431689 - -[316] Log opened at 2024-10-17 12:03:43.737810 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:03:44.902369 - -[303] Log opened at 2024-10-17 12:03:53.740450 -[303] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.303' -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[303] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[303] Log closed at 2024-10-17 12:03:54.965229 - -[318] Log opened at 2024-10-17 12:04:06.272050 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:04:10.539482 - -[313] Log opened at 2024-10-17 12:05:08.857830 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:05:11.255670 - -[313] Log opened at 2024-10-17 12:05:11.485195 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 12:05:11.561201 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:05:12.150689 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:05:12.756120 - -[302] Log opened at 2024-10-17 12:05:12.799338 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] Log opened at 2024-10-17 12:05:12.908992 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] Log opened at 2024-10-17 12:05:12.910887 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:05:13.954329 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:05:14.712533 - -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:05:15.068156 - -[318] Log opened at 2024-10-17 12:05:57.197236 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 12:05:57.214570 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log opened at 2024-10-17 12:05:59.117339 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:06:02.638496 - -[310] Log opened at 2024-10-17 12:06:04.693400 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:06:06.337504 - -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:06:06.738983 - -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:06:07.124004 - -[310] Log opened at 2024-10-17 12:06:09.949303 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:06:11.137936 - -[310] Log opened at 2024-10-17 12:06:13.152295 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:06:14.311294 - -[310] Log opened at 2024-10-17 12:06:16.509007 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:06:17.648843 - -[310] Log opened at 2024-10-17 12:06:17.663819 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:06:21.805848 - -[302] Log opened at 2024-10-17 12:09:00.622021 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:09:05.496882 - -[302] Log opened at 2024-10-17 12:09:07.456601 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:09:08.619354 - -[313] Log opened at 2024-10-17 12:10:25.948546 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:10:27.181301 - -[313] Log opened at 2024-10-17 12:10:29.068611 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:10:33.499591 - -[313] Log opened at 2024-10-17 12:10:34.180220 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:10:38.919113 - -[316] Log opened at 2024-10-17 12:11:04.523454 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:11:05.651879 - -[317] Log opened at 2024-10-17 12:11:05.712253 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log opened at 2024-10-17 12:11:07.363992 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:11:08.159280 - -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:11:09.845075 - -[318] Log opened at 2024-10-17 12:11:09.889054 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:11:12.354597 - -[318] Log opened at 2024-10-17 12:11:12.548137 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] Log opened at 2024-10-17 12:11:12.550377 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:11:13.203467 - -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:11:13.716201 - -[311] Log opened at 2024-10-17 12:11:13.907668 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 12:11:14.058999 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:11:14.062036 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:11:15.120746 - -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:11:15.847617 - -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:11:16.190857 - -[310] Log opened at 2024-10-17 12:11:16.320156 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:11:16.334010 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 12:11:16.350747 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:11:20.956405 - -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:11:25.121403 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:11:29.013415 - -[302] Log opened at 2024-10-17 12:11:30.628076 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:11:31.749061 - -[316] Log opened at 2024-10-17 12:11:45.483024 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:11:46.643352 - -[308] Log opened at 2024-10-17 12:12:06.139354 -[308] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.308' -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[308] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[308] Log closed at 2024-10-17 12:12:07.328737 - -[317] Log opened at 2024-10-17 12:12:28.260018 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:12:29.423051 - -[317] Log opened at 2024-10-17 12:12:29.455718 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:12:34.081075 - -[318] Log opened at 2024-10-17 12:14:05.996391 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:14:08.433617 - -[318] Log opened at 2024-10-17 12:14:08.678299 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 12:14:08.734221 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:14:09.338202 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:14:09.935902 - -[316] Log opened at 2024-10-17 12:14:10.061611 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:14:10.256880 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log opened at 2024-10-17 12:14:10.264985 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:14:11.313950 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:14:12.040234 - -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:14:12.391655 - -[310] Log opened at 2024-10-17 12:14:12.510507 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:14:12.520771 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] Log opened at 2024-10-17 12:14:12.533579 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:14:16.887020 - -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:14:20.489504 - -[313] Log opened at 2024-10-17 12:14:22.760289 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:14:24.320503 - -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:14:24.704137 - -[313] Log opened at 2024-10-17 12:14:28.250696 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:14:29.419158 - -[313] Log opened at 2024-10-17 12:14:30.106359 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:14:31.223067 - -[313] Log opened at 2024-10-17 12:14:32.308266 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:14:33.435045 - -[313] Log opened at 2024-10-17 12:14:33.448996 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:14:37.759912 - -[317] Log opened at 2024-10-17 12:15:21.682737 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:15:24.005905 - -[317] Log opened at 2024-10-17 12:15:24.186443 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] Log opened at 2024-10-17 12:15:24.191346 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:15:24.838046 - -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:15:25.465155 - -[315] Log opened at 2024-10-17 12:15:25.512504 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log opened at 2024-10-17 12:15:25.771923 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:15:25.809338 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:15:26.789953 - -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:15:27.507730 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:15:27.855798 - -[311] Log opened at 2024-10-17 12:15:28.024258 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:15:28.034171 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 12:15:28.045843 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:15:32.278835 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:15:36.120949 - -[316] Log opened at 2024-10-17 12:15:37.077151 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:15:39.564171 - -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:15:39.952189 - -[316] Log opened at 2024-10-17 12:15:41.423944 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:15:42.619028 - -[316] Log opened at 2024-10-17 12:15:43.996070 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:15:45.207623 - -[316] Log opened at 2024-10-17 12:15:47.730634 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:15:48.838446 - -[316] Log opened at 2024-10-17 12:15:48.866409 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:15:52.959075 - -[316] Log opened at 2024-10-17 12:15:57.374322 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:16:06.049655 - -[310] Log opened at 2024-10-17 12:16:12.373978 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:16:16.877226 - -[315] Log opened at 2024-10-17 12:20:21.062688 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:20:25.675427 - -[317] Log opened at 2024-10-17 12:25:48.000647 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:25:49.213439 - -[317] Log opened at 2024-10-17 12:25:51.805626 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:25:56.175029 - -[311] Log opened at 2024-10-17 12:26:09.469696 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:26:11.206713 - -[311] Log opened at 2024-10-17 12:26:15.714475 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:26:16.898070 - -[311] Log opened at 2024-10-17 12:26:20.601672 -[311] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.311' -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[311] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[311] Log closed at 2024-10-17 12:26:25.362563 - -[310] Log opened at 2024-10-17 12:30:30.003830 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:30:32.280523 - -[310] Log opened at 2024-10-17 12:30:32.495385 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:30:32.607074 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:30:33.164469 - -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:30:33.894188 - -[313] Log opened at 2024-10-17 12:30:33.946281 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] Log opened at 2024-10-17 12:30:34.063101 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] Log opened at 2024-10-17 12:30:34.080746 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:30:35.067517 - -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:30:35.792574 - -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:30:36.145624 - -[320] Log opened at 2024-10-17 12:30:48.168303 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 12:30:48.176489 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 12:30:48.189250 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:30:52.712322 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:30:56.461631 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:31:00.793260 - -[316] Log opened at 2024-10-17 12:31:04.706403 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:31:05.854950 - -[316] Log opened at 2024-10-17 12:31:09.908447 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:31:11.057173 - -[313] Log opened at 2024-10-17 12:31:17.313635 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:31:18.529370 - -[310] Log opened at 2024-10-17 12:33:03.169103 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:33:04.315360 - -[317] Log opened at 2024-10-17 12:33:15.216388 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:33:17.579060 - -[317] Log opened at 2024-10-17 12:33:17.757461 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:33:17.771044 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:33:18.438079 - -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:33:18.969579 - -[319] Log opened at 2024-10-17 12:33:19.053040 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] Log opened at 2024-10-17 12:33:19.056239 -[318] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.318' -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[318] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[318] Log closed at 2024-10-17 12:33:20.094834 - -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:33:20.800854 - -[313] Log opened at 2024-10-17 12:34:02.841567 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:34:05.150965 - -[313] Log opened at 2024-10-17 12:34:05.293106 -[313] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.313' -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 12:34:05.352915 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[313] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[313] Log closed at 2024-10-17 12:34:05.968502 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:34:06.579244 - -[315] Log opened at 2024-10-17 12:34:06.635249 -[315] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.315' -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:34:06.642914 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:34:06.646614 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:34:07.656594 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:34:07.990905 - -[302] Log opened at 2024-10-17 12:34:08.110737 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:34:08.124321 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:34:08.138781 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[315] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[315] Log closed at 2024-10-17 12:34:08.734705 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:34:12.320671 - -[320] Log opened at 2024-10-17 12:34:13.807546 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:34:15.960406 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:34:20.017404 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:34:20.408472 - -[321] Log opened at 2024-10-17 12:34:34.884885 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:34:36.048931 - -[321] Log opened at 2024-10-17 12:34:38.256655 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:34:39.362949 - -[321] Log opened at 2024-10-17 12:34:39.376149 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:34:43.574344 - -[316] Log opened at 2024-10-17 12:35:03.019398 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:35:04.194363 - -[322] Log opened at 2024-10-17 12:35:44.618851 -[322] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.322' -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] Log closed at 2024-10-17 12:35:49.105561 - -[310] Log opened at 2024-10-17 12:37:01.655238 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:37:03.966685 - -[310] Log opened at 2024-10-17 12:37:04.199230 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 12:37:04.265435 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:37:04.857381 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:37:05.511635 - -[319] Log opened at 2024-10-17 12:37:05.561300 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:37:05.690122 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] Log opened at 2024-10-17 12:37:05.690136 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:37:06.747062 - -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:37:07.461121 - -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:37:07.813495 - -[321] Log opened at 2024-10-17 12:37:07.919153 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:37:07.929192 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] Log opened at 2024-10-17 12:37:07.953644 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:37:12.407294 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:37:16.151175 - -[322] Log opened at 2024-10-17 12:37:18.807733 -[322] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.322' -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:37:20.146870 - -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] Log closed at 2024-10-17 12:37:20.536152 - -[317] Log opened at 2024-10-17 12:37:23.194126 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:37:24.347931 - -[317] Log opened at 2024-10-17 12:37:26.304429 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:37:27.463040 - -[317] Log opened at 2024-10-17 12:37:27.480173 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:37:31.974138 - -[302] Log opened at 2024-10-17 12:38:56.459993 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:38:58.805558 - -[302] Log opened at 2024-10-17 12:38:59.026938 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:38:59.188053 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:38:59.709552 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:39:00.466615 - -[321] Log opened at 2024-10-17 12:39:00.516021 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] Log opened at 2024-10-17 12:39:00.622237 -[322] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.322' -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 12:39:00.622509 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] Log closed at 2024-10-17 12:39:01.683741 - -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:39:02.387190 - -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:39:02.746580 - -[317] Log opened at 2024-10-17 12:39:02.930537 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] Log opened at 2024-10-17 12:39:02.956999 -[322] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.322' -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:39:07.602267 - -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] Log closed at 2024-10-17 12:39:11.435443 - -[323] Log opened at 2024-10-17 12:39:42.157044 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 12:39:43.422339 - -[323] Log opened at 2024-10-17 12:39:45.712824 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 12:39:46.839204 - -[319] Log opened at 2024-10-17 12:39:55.485826 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:39:56.710006 - -[319] Log opened at 2024-10-17 12:39:56.731713 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:40:01.718316 - -[324] Log opened at 2024-10-17 12:41:26.638163 -[324] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.324' -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] Log closed at 2024-10-17 12:41:27.796254 - -[321] Log opened at 2024-10-17 12:44:09.134359 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:44:11.794126 - -[321] Log opened at 2024-10-17 12:44:12.019493 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 12:44:12.020182 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] Log opened at 2024-10-17 12:44:12.023944 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:44:12.684032 - -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:44:13.220875 - -[317] Log opened at 2024-10-17 12:44:13.326177 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log opened at 2024-10-17 12:44:13.569191 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[320] Log opened at 2024-10-17 12:44:13.569210 -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:44:17.210331 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:44:17.692041 - -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:44:18.399000 - -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:44:18.732631 - -[323] Log opened at 2024-10-17 12:44:24.507599 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:44:24.522895 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:44:29.427768 - -[319] Log opened at 2024-10-17 12:44:32.078271 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 12:44:33.305025 - -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:44:33.729066 - -[319] Log opened at 2024-10-17 12:44:38.287846 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:44:39.418976 - -[319] Log opened at 2024-10-17 12:44:40.620620 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:44:41.728032 - -[319] Log opened at 2024-10-17 12:44:41.742933 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:44:46.195599 - -[324] Log opened at 2024-10-17 12:47:12.575360 -[324] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.324' -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] Log closed at 2024-10-17 12:47:13.705066 - -[324] Log opened at 2024-10-17 12:47:13.740937 -[324] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.324' -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[324] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[324] Log closed at 2024-10-17 12:47:18.165416 - -[322] Log opened at 2024-10-17 12:47:35.693454 -[322] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.322' -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] Log closed at 2024-10-17 12:47:41.074663 - -[321] Log opened at 2024-10-17 12:48:03.259672 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 417 -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[321] [Step Debug] -> - -[321] [Step Debug] <- run -i 10 -[321] [Step Debug] -> - -[321] Log closed at 2024-10-17 12:48:04.018007 - -[321] Log opened at 2024-10-17 12:48:04.038597 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 417 -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[321] [Step Debug] -> - -[321] [Step Debug] <- run -i 10 -[321] [Step Debug] -> - -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 11 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 12 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 14 -n "$tirada" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- step_over -i 15 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 16 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 17 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- step_over -i 19 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 20 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 21 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- step_over -i 23 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 24 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 25 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- step_over -i 27 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 28 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 29 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 30 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- step_over -i 32 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 33 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 34 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 35 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- step_over -i 36 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 37 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 38 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 40 -n "$this->calcular_presupuesto" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- step_over -i 41 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 42 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 43 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 44 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 45 -n "$coste_envio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 46 -n "$direcciones" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 47 -n "$this" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 48 -n "$this->getCosteEnvio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 49 -n "$this->getCosteEnvio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 50 -n "$this->getCosteEnvio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 51 -n "$this->getCosteEnvio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 52 -n "$direccion" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 53 -n "$direcciones" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 54 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 55 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 56 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 57 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 58 -n "$tirada" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 59 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 60 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 61 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 62 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 63 -n "$tirada" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 64 -n "$tirada" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 65 -n "$coste_envio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 66 -n "$coste_envio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 67 -n "$i" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 68 -n "$tirada" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 69 -n "$direccion" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 70 -n "$this" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 71 -n "$direccion" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 72 -n "$return_data" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- property_get -i 73 -n "$coste_envio" -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- run -i 74 -[321] [Step Debug] -> - -[321] [Step Debug] <- stack_get -i 75 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_names -i 76 -d 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- context_get -i 77 -d 0 -c 0 -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_remove -i 78 -d 3210005 -[321] [Step Debug] -> - -[321] [Step Debug] <- run -i 79 -[321] [Step Debug] -> - -[321] Log closed at 2024-10-17 12:49:49.675360 - -[321] Log opened at 2024-10-17 12:49:54.560067 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[321] [Step Debug] -> - -[321] [Step Debug] <- run -i 9 -[302] Log opened at 2024-10-17 12:49:56.622028 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 9 -[321] [Step Debug] -> - -[321] Log closed at 2024-10-17 12:49:58.691389 - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 12:50:02.160438 - -[316] Log opened at 2024-10-17 12:50:30.964394 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 12:50:35.036637 - -[316] Log opened at 2024-10-17 12:50:39.556537 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 12:50:40.459476 - -[316] Log opened at 2024-10-17 12:50:42.218170 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 12:50:42.914499 - -[316] Log opened at 2024-10-17 12:50:42.928233 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 12:50:47.034442 - -[317] Log opened at 2024-10-17 12:51:21.516436 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 12:51:22.107304 - -[317] Log opened at 2024-10-17 12:51:22.125051 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 12:51:26.299915 - -[320] Log opened at 2024-10-17 12:55:32.042261 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 12:55:33.877017 - -[320] Log opened at 2024-10-17 12:55:34.111298 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[310] Log opened at 2024-10-17 12:55:34.183373 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[310] [Step Debug] -> - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 12:55:34.228453 - -[310] [Step Debug] <- run -i 9 -[310] [Step Debug] -> - -[310] Log closed at 2024-10-17 12:55:34.945813 - -[323] Log opened at 2024-10-17 12:55:34.994874 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[323] [Step Debug] -> - -[323] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[323] [Step Debug] -> - -[323] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[323] [Step Debug] -> - -[323] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[323] [Step Debug] -> - -[323] [Step Debug] <- run -i 9 -[319] Log opened at 2024-10-17 12:55:35.100875 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[319] [Step Debug] -> - -[302] Log opened at 2024-10-17 12:55:35.109705 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[319] [Step Debug] -> - -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[319] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[319] [Step Debug] -> - -[319] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[319] [Step Debug] -> - -[319] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[319] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[319] [Step Debug] <- run -i 9 -[302] [Step Debug] <- run -i 9 -[319] [Step Debug] -> - -[319] Log closed at 2024-10-17 12:55:35.654364 - -[323] [Step Debug] -> - -[323] Log closed at 2024-10-17 12:55:35.941604 - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 12:55:36.099168 - -[321] Log opened at 2024-10-17 12:55:36.240018 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[321] [Step Debug] -> - -[321] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[321] [Step Debug] -> - -[319] Log opened at 2024-10-17 12:55:36.250829 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[319] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" -[321] [Step Debug] -> - -[319] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[319] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" -[319] [Step Debug] -> - -[321] [Step Debug] -> - -[321] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[321] [Step Debug] -> - -[319] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 4 -n max_children -v 100 -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[319] [Step Debug] -> - -[319] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[319] [Step Debug] -> - -[302] Log opened at 2024-10-17 12:55:36.264829 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[321] [Step Debug] <- run -i 9 -[319] [Step Debug] <- run -i 9 -[302] [Step Debug] <- run -i 6 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 12:55:40.233111 - -[321] [Step Debug] -> - -[321] Log closed at 2024-10-17 12:55:44.109813 - -[316] Log opened at 2024-10-17 12:55:45.482027 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[319] [Step Debug] -> - -[319] Log closed at 2024-10-17 12:55:48.036282 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 12:55:48.257268 - -[316] Log opened at 2024-10-17 12:55:50.321821 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 12:55:50.925873 - -[316] Log opened at 2024-10-17 12:55:53.749395 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 12:55:54.317962 - -[322] Log opened at 2024-10-17 12:56:38.614905 -[322] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.322' -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[322] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[322] Log closed at 2024-10-17 12:56:43.404761 - -[323] Log opened at 2024-10-17 12:56:54.220173 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 12:56:55.372012 - -[323] Log opened at 2024-10-17 12:56:55.405017 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 12:57:00.036724 - -[310] Log opened at 2024-10-17 12:57:31.071924 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:57:33.359457 - -[310] Log opened at 2024-10-17 12:57:33.559813 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] Log opened at 2024-10-17 12:57:33.632054 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:57:34.217681 - -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:57:34.948504 - -[316] Log opened at 2024-10-17 12:57:35.002307 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:57:35.133297 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 12:57:35.133841 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:57:36.193661 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:57:36.966359 - -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:57:37.332435 - -[317] Log opened at 2024-10-17 12:57:37.441588 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] Log opened at 2024-10-17 12:57:37.451869 -[319] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.319' -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 12:57:37.475330 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:57:42.134127 - -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[319] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[319] Log closed at 2024-10-17 12:57:45.889204 - -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:57:49.832141 - -[323] Log opened at 2024-10-17 12:57:51.720345 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 12:57:54.077761 - -[323] Log opened at 2024-10-17 12:57:54.284141 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 12:57:54.334960 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 12:57:54.938263 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 12:57:55.591107 - -[310] Log opened at 2024-10-17 12:57:55.641571 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 12:57:55.746846 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] Log opened at 2024-10-17 12:57:55.757362 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:57:56.771328 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 12:57:57.498700 - -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] Log closed at 2024-10-17 12:57:57.842257 - -[321] Log opened at 2024-10-17 12:57:57.948412 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 12:57:57.959380 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] Log opened at 2024-10-17 12:57:57.980963 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] Log closed at 2024-10-17 12:58:02.182984 - -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 12:58:06.029834 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 12:58:09.986475 - -[302] Log opened at 2024-10-17 12:58:14.178307 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:58:15.395161 - -[302] Log opened at 2024-10-17 12:58:16.931683 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 12:58:18.059194 - -[317] Log opened at 2024-10-17 12:59:36.838202 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 12:59:38.063510 - -[325] Log opened at 2024-10-17 12:59:47.855067 -[325] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.325' -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] Log closed at 2024-10-17 12:59:52.434134 - -[310] Log opened at 2024-10-17 13:01:50.313560 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:01:51.499659 - -[323] Log opened at 2024-10-17 13:02:35.772397 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 13:02:40.725560 - -[323] Log opened at 2024-10-17 13:02:41.993517 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 13:02:43.107943 - -[320] Log opened at 2024-10-17 13:04:27.567078 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:04:29.811365 - -[320] Log opened at 2024-10-17 13:04:29.974079 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] Log opened at 2024-10-17 13:04:29.975450 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] Log opened at 2024-10-17 13:04:29.991218 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 13:04:30.646530 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:04:34.803295 - -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] Log closed at 2024-10-17 13:04:35.242341 - -[326] Log opened at 2024-10-17 13:04:35.298602 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] Log opened at 2024-10-17 13:04:35.425357 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 13:04:35.491345 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 13:04:36.459551 - -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] Log closed at 2024-10-17 13:04:37.200308 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:04:37.534195 - -[321] Log opened at 2024-10-17 13:04:40.608626 -[321] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.321' -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 13:04:40.628882 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:04:45.257213 - -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[321] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[321] Log closed at 2024-10-17 13:04:49.036880 - -[320] Log opened at 2024-10-17 13:04:49.961254 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:04:51.079587 - -[320] Log opened at 2024-10-17 13:04:52.869285 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:04:53.987067 - -[320] Log opened at 2024-10-17 13:04:54.009613 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:04:58.644185 - -[310] Log opened at 2024-10-17 13:06:59.739730 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:07:02.029305 - -[310] Log opened at 2024-10-17 13:07:02.229024 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] Log opened at 2024-10-17 13:07:02.304309 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:07:02.907972 - -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] Log closed at 2024-10-17 13:07:03.540920 - -[317] Log opened at 2024-10-17 13:07:03.642117 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 13:07:03.775555 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 13:07:03.778881 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 13:07:04.830595 - -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 13:07:05.536799 - -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 13:07:05.877948 - -[323] Log opened at 2024-10-17 13:07:05.984380 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 13:07:05.994646 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 13:07:06.005209 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 13:07:10.597684 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 13:07:14.432044 - -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] Log closed at 2024-10-17 13:07:18.604439 - -[320] Log opened at 2024-10-17 13:07:21.110849 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:07:22.300205 - -[325] Log opened at 2024-10-17 13:07:27.469188 -[325] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.325' -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] Log closed at 2024-10-17 13:07:28.679319 - -[325] Log opened at 2024-10-17 13:07:28.698539 -[325] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.325' -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] Log closed at 2024-10-17 13:07:33.378027 - -[328] Log opened at 2024-10-17 13:08:26.600690 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 13:08:27.796273 - -[317] Log opened at 2024-10-17 13:08:54.352971 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 13:08:56.839271 - -[317] Log opened at 2024-10-17 13:08:57.014121 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 13:08:57.015100 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 13:08:57.022867 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:08:57.676085 - -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] Log closed at 2024-10-17 13:09:01.308709 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 13:09:01.730051 - -[302] Log opened at 2024-10-17 13:09:01.776236 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] Log opened at 2024-10-17 13:09:01.887698 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 13:09:01.903410 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] Log closed at 2024-10-17 13:09:02.905961 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 13:09:03.623758 - -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:09:03.967661 - -[326] Log opened at 2024-10-17 13:09:04.104507 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] Log opened at 2024-10-17 13:09:04.117356 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] Log closed at 2024-10-17 13:09:08.565830 - -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:09:12.802698 - -[310] Log opened at 2024-10-17 13:09:13.857721 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:09:15.087154 - -[310] Log opened at 2024-10-17 13:09:16.969404 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:09:18.121410 - -[316] Log opened at 2024-10-17 13:09:34.302204 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 13:09:35.459064 - -[316] Log opened at 2024-10-17 13:09:35.487039 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 13:09:40.149320 - -[320] Log opened at 2024-10-17 13:09:46.404245 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 13:09:51.153870 - -[310] Log opened at 2024-10-17 13:41:00.904755 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:41:05.239285 - -[320] Log opened at 2024-10-17 13:42:02.349981 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 703 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 13:42:06.369890 - -[327] Log opened at 2024-10-17 13:42:18.882892 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 693 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 703 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 11 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 13:42:22.828085 - -[310] Log opened at 2024-10-17 13:57:44.331408 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] Log closed at 2024-10-17 13:57:48.071612 - -[316] Log opened at 2024-10-17 13:58:03.656800 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2041 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 11 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- stack_get -i 12 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 13 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 15 -[316] [Step Debug] -> - -[316] [Step Debug] <- stack_get -i 16 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 17 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 19 -[316] [Step Debug] -> - -[316] [Step Debug] <- stack_get -i 20 -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 21 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 22 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- stack_get -i 23 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 25 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 13:58:26.560451 - -[325] Log opened at 2024-10-17 13:58:30.629208 -[325] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.325' -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2041 -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[325] [Step Debug] -> - -[325] [Step Debug] <- run -i 11 -[325] [Step Debug] -> - -[325] [Step Debug] -> - -[325] [Step Debug] -> - -[325] [Step Debug] <- stack_get -i 12 -[325] [Step Debug] -> - -[325] [Step Debug] <- context_names -i 13 -d 0 -[325] [Step Debug] -> - -[325] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[325] [Step Debug] -> - -[325] [Step Debug] <- run -i 15 -[325] [Step Debug] -> - -[325] [Step Debug] <- stack_get -i 16 -[325] [Step Debug] -> - -[325] [Step Debug] <- context_names -i 17 -d 0 -[325] [Step Debug] -> - -[325] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[325] [Step Debug] -> - -[325] [Step Debug] <- run -i 19 -[325] [Step Debug] -> - -[325] [Step Debug] <- stack_get -i 20 -[325] [Step Debug] -> - -[325] [Step Debug] <- stack_get -i 21 -[325] [Step Debug] -> - -[325] [Step Debug] <- context_names -i 22 -d 0 -[325] [Step Debug] -> - -[325] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[325] [Step Debug] -> - -[325] [Step Debug] <- run -i 24 -[325] [Step Debug] -> - -[325] Log closed at 2024-10-17 14:01:01.819483 - -[320] Log opened at 2024-10-17 14:01:05.387887 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2041 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 11 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 12 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 13 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 15 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 14:01:11.800191 - -[327] Log opened at 2024-10-17 14:01:36.670414 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 14:01:39.720552 - -[323] Log opened at 2024-10-17 14:02:06.474640 -[323] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.323' -[323] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[323] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[323] [Step Debug] -> - -[323] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[323] [Step Debug] -> - -[323] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2040 -[323] [Step Debug] -> - -[323] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[323] [Step Debug] -> - -[323] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[323] [Step Debug] -> - -[323] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[323] [Step Debug] -> - -[323] [Step Debug] <- run -i 10 -[323] [Step Debug] -> - -[323] [Step Debug] -> - -[323] [Step Debug] <- stack_get -i 11 -[323] [Step Debug] -> - -[323] [Step Debug] <- context_names -i 12 -d 0 -[323] [Step Debug] -> - -[323] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[323] [Step Debug] -> - -[323] [Step Debug] <- step_over -i 14 -[323] [Step Debug] -> - -[323] [Step Debug] <- stack_get -i 15 -[323] [Step Debug] -> - -[323] [Step Debug] <- context_names -i 16 -d 0 -[323] [Step Debug] -> - -[323] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[323] [Step Debug] -> - -[323] [Step Debug] <- property_get -i 18 -n "$data->casts" -p 0 -d 0 -c 0 -[323] [Step Debug] -> - -[323] [Step Debug] <- run -i 19 -[323] [Step Debug] -> - -[323] [Step Debug] <- stack_get -i 20 -[323] [Step Debug] -> - -[323] [Step Debug] <- context_names -i 21 -d 0 -[323] [Step Debug] -> - -[323] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[323] [Step Debug] -> - -[323] [Step Debug] <- run -i 23 -[323] [Step Debug] -> - -[323] Log closed at 2024-10-17 14:04:10.502757 - -[317] Log opened at 2024-10-17 14:04:19.466503 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2040 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 10 -[317] [Step Debug] -> - -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 11 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 12 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- step_over -i 14 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 15 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 16 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 17 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- property_get -i 19 -n "$data->casts" -p 0 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- property_get -i 20 -n "$data->attributes" -p 0 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- step_over -i 21 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 22 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 23 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- step_over -i 25 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 26 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 27 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- step_over -i 29 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 30 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 31 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- step_over -i 33 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 34 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 35 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- step_over -i 37 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 38 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 39 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 40 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 41 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- step_over -i 42 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 43 -[317] [Step Debug] -> - -[317] [Step Debug] <- stack_get -i 44 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_names -i 45 -d 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- context_get -i 46 -d 0 -c 0 -[317] [Step Debug] -> - -[317] [Step Debug] <- eval -i 47 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMTJhZTMyY2IxZWMwMmQwMWVkYTM1ODFiMTI3YzFmZWUzYjBkYzUzNTcyZWQ2YmFmMjM5NzIxYTAzZDgyZTEyNiddPSIi -[317] [Step Debug] -> - -[317] [Step Debug] <- property_get -i 48 -n "$DEVSENSE_EVAL_CACHE['12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126']" -c 1 -[317] [Step Debug] -> - -[310] Log opened at 2024-10-17 14:08:20.867834 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[317] [Step Debug] <- breakpoint_remove -i 49 -d 3170007 -[317] [Step Debug] -> - -[310] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 50 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[317] [Step Debug] -> - -[317] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[310] [Step Debug] -> - -[310] [Step Debug] <- run -i 10 -[317] [Step Debug] <- stop -i 51 -[317] [Step Debug] -> - -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 14:08:39.223938 - -[310] [Step Debug] -> - -[310] [Step Debug] -> - -[310] [Step Debug] <- stop -i 11 -[310] [Step Debug] -> - -[310] Log closed at 2024-10-17 14:08:40.604912 - -[310] Log opened at 2024-10-17 14:08:40.949163 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[310] [Step Debug] -> - -[310] [Step Debug] <- run -i 10 -[328] Log opened at 2024-10-17 14:08:41.054470 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[310] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[328] [Step Debug] -> - -[310] Log closed at 2024-10-17 14:08:41.105684 - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 14:08:41.986189 - -[325] Log opened at 2024-10-17 14:08:42.056615 -[325] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.325' -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[325] [Step Debug] -> - -[325] [Step Debug] <- run -i 10 -[320] Log opened at 2024-10-17 14:08:42.304413 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[327] Log opened at 2024-10-17 14:08:42.334215 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[327] [Step Debug] <- run -i 6 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 14:08:42.886692 - -[325] [Step Debug] -> - -[325] Log closed at 2024-10-17 14:08:43.189204 - -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 14:08:43.354272 - -[302] Log opened at 2024-10-17 14:08:43.490618 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[320] Log opened at 2024-10-17 14:08:43.521234 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 6 -[302] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 14:08:47.336096 - -[302] [Step Debug] -> - -[302] [Step Debug] -> - -[302] [Step Debug] <- stack_get -i 11 -[302] [Step Debug] -> - -[302] [Step Debug] <- context_names -i 12 -d 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 14 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 14:08:54.781564 - -[326] Log opened at 2024-10-17 14:09:01.671068 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 10 -[326] [Step Debug] -> - -[326] [Step Debug] -> - -[326] [Step Debug] <- stack_get -i 11 -[326] [Step Debug] -> - -[326] [Step Debug] <- context_names -i 12 -d 0 -[326] [Step Debug] -> - -[326] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 14 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 14:09:11.877946 - -[326] Log opened at 2024-10-17 14:09:16.233995 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2045 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 10 -[326] [Step Debug] -> - -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_remove -i 11 -d 3260005 -[326] [Step Debug] -> - -[326] [Step Debug] <- stack_get -i 12 -[326] [Step Debug] -> - -[326] [Step Debug] <- context_names -i 13 -d 0 -[326] [Step Debug] -> - -[326] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 15 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 14:09:47.934374 - -[310] Log opened at 2024-10-17 14:59:01.390482 -[310] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.310' -[310] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[310] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[310] [Step Debug] -> - -[310] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[310] [Step Debug] -> - -[310] [Step Debug] <- run -i 9 -[310] [Step Debug] -> - -[310] Log closed at 2024-10-17 14:59:01.819454 - -[328] Log opened at 2024-10-17 14:59:01.834599 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 14:59:02.230965 - -[328] Log opened at 2024-10-17 14:59:02.420815 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 14:59:02.528326 - -[326] Log opened at 2024-10-17 14:59:03.041247 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 14:59:03.440459 - -[326] Log opened at 2024-10-17 14:59:05.353515 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 14:59:06.201301 - -[326] Log opened at 2024-10-17 14:59:06.217127 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 14:59:08.019201 - -[326] Log opened at 2024-10-17 14:59:08.146421 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[320] Log opened at 2024-10-17 14:59:08.161829 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 3 -[326] [Step Debug] <- run -i 9 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 14:59:08.269233 - -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 14:59:08.952537 - -[326] Log opened at 2024-10-17 14:59:09.103242 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[320] Log opened at 2024-10-17 14:59:09.335947 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[329] Log opened at 2024-10-17 14:59:09.339739 -[329] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.329' -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[329] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[329] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[329] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[329] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[329] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[329] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[329] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[329] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[329] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[329] [Step Debug] -> - -[329] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 9 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 14:59:09.874795 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 14:59:10.160636 - -[329] [Step Debug] -> - -[329] Log closed at 2024-10-17 14:59:10.285996 - -[320] Log opened at 2024-10-17 14:59:10.407868 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[329] Log opened at 2024-10-17 14:59:10.419729 -[329] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.329' -[329] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[329] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[329] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[329] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[329] [Step Debug] -> - -[320] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[329] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[329] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" -[320] [Step Debug] -> - -[329] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[329] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[329] [Step Debug] <- run -i 9 -[325] Log opened at 2024-10-17 14:59:12.244724 -[325] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.325' -[325] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[325] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[325] [Step Debug] -> - -[325] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[325] [Step Debug] -> - -[325] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 14:59:14.156068 - -[329] [Step Debug] -> - -[329] Log closed at 2024-10-17 14:59:17.800832 - -[325] [Step Debug] -> - -[325] Log closed at 2024-10-17 14:59:18.038927 - -[329] Log opened at 2024-10-17 14:59:19.515448 -[329] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.329' -[329] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[329] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[329] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[329] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[329] [Step Debug] -> - -[329] [Step Debug] <- run -i 9 -[329] [Step Debug] -> - -[329] Log closed at 2024-10-17 14:59:20.134619 - -[329] Log opened at 2024-10-17 14:59:21.543801 -[329] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.329' -[329] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[329] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[329] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[329] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[329] [Step Debug] -> - -[329] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[329] [Step Debug] -> - -[329] [Step Debug] <- run -i 9 -[329] [Step Debug] -> - -[329] Log closed at 2024-10-17 14:59:22.107294 - -[302] Log opened at 2024-10-17 15:00:28.650099 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 9 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:00:30.570626 - -[302] Log opened at 2024-10-17 15:00:30.785253 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 9 -[326] Log opened at 2024-10-17 15:00:30.850659 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:00:30.901585 - -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 15:00:31.601657 - -[327] Log opened at 2024-10-17 15:00:31.663297 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[320] Log opened at 2024-10-17 15:00:31.777715 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] Log opened at 2024-10-17 15:00:31.778312 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:00:32.355432 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:00:32.705481 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:00:32.861520 - -[326] Log opened at 2024-10-17 15:00:32.978065 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[328] Log opened at 2024-10-17 15:00:32.989746 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[328] [Step Debug] -> - -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[328] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[328] [Step Debug] <- run -i 9 -[320] Log opened at 2024-10-17 15:00:33.009148 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 6 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:00:37.078398 - -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 15:00:40.725444 - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:00:44.299457 - -[330] Log opened at 2024-10-17 15:02:37.339055 -[330] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.330' -[330] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[330] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[330] [Step Debug] -> - -[330] [Step Debug] <- run -i 9 -[330] [Step Debug] -> - -[330] Log closed at 2024-10-17 15:02:39.062433 - -[330] Log opened at 2024-10-17 15:02:39.299204 -[330] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.330' -[330] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[330] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[330] [Step Debug] -> - -[330] [Step Debug] <- run -i 9 -[328] Log opened at 2024-10-17 15:02:39.395068 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[330] [Step Debug] -> - -[330] Log closed at 2024-10-17 15:02:39.463518 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:02:40.148257 - -[317] Log opened at 2024-10-17 15:02:40.231654 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[331] Log opened at 2024-10-17 15:02:40.340152 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[327] Log opened at 2024-10-17 15:02:40.347851 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[331] [Step Debug] <- run -i 9 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:02:40.870067 - -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:02:41.194577 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:02:41.340128 - -[328] Log opened at 2024-10-17 15:02:41.461671 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[331] Log opened at 2024-10-17 15:02:41.468027 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[327] Log opened at 2024-10-17 15:02:41.481964 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[331] [Step Debug] <- run -i 9 -[327] [Step Debug] <- run -i 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:02:45.414543 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:02:49.086066 - -[327] Log opened at 2024-10-17 15:02:49.825999 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:02:52.736296 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:02:54.027343 - -[327] Log opened at 2024-10-17 15:02:54.167717 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[326] Log opened at 2024-10-17 15:02:54.189202 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:02:54.263261 - -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 15:02:54.837473 - -[327] Log opened at 2024-10-17 15:02:54.881957 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[326] Log opened at 2024-10-17 15:02:55.031694 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[316] Log opened at 2024-10-17 15:02:55.059061 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 15:02:55.542640 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:02:55.869047 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:02:56.010402 - -[326] Log opened at 2024-10-17 15:02:56.124079 -[326] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.326' -[326] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[326] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[326] [Step Debug] -> - -[326] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[326] [Step Debug] -> - -[316] Log opened at 2024-10-17 15:02:56.138490 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[326] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[326] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[326] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[326] [Step Debug] -> - -[326] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[326] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[316] [Step Debug] -> - -[320] Log opened at 2024-10-17 15:02:56.149748 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[326] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 6 -[316] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:02:59.978799 - -[326] [Step Debug] -> - -[326] Log closed at 2024-10-17 15:03:03.410620 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:03:07.158920 - -[317] Log opened at 2024-10-17 15:03:26.034348 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:03:27.827162 - -[317] Log opened at 2024-10-17 15:03:28.011526 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[328] Log opened at 2024-10-17 15:03:28.084611 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:03:28.168900 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:03:28.769854 - -[330] Log opened at 2024-10-17 15:03:28.851028 -[330] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.330' -[330] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[330] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[330] [Step Debug] -> - -[330] [Step Debug] <- run -i 9 -[327] Log opened at 2024-10-17 15:03:28.973209 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[331] Log opened at 2024-10-17 15:03:28.985925 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[331] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[331] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:03:29.522129 - -[330] [Step Debug] -> - -[330] Log closed at 2024-10-17 15:03:29.829486 - -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:03:29.997276 - -[302] Log opened at 2024-10-17 15:03:30.114897 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[327] Log opened at 2024-10-17 15:03:30.127285 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[327] [Step Debug] -> - -[331] Log opened at 2024-10-17 15:03:30.152686 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 6 -[327] [Step Debug] <- run -i 9 -[302] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:03:34.081547 - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:03:37.722491 - -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:03:41.707756 - -[320] Log opened at 2024-10-17 15:03:47.315620 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:03:47.916659 - -[320] Log opened at 2024-10-17 15:03:51.336089 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:03:51.917719 - -[316] Log opened at 2024-10-17 15:13:02.855766 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:13:04.673388 - -[316] Log opened at 2024-10-17 15:13:04.851702 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[332] Log opened at 2024-10-17 15:13:04.874992 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:13:04.945260 - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:13:05.527675 - -[332] Log opened at 2024-10-17 15:13:05.582027 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 9 -[333] Log opened at 2024-10-17 15:13:05.742389 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[330] Log opened at 2024-10-17 15:13:05.742132 -[330] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.330' -[330] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[330] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] -> - -[330] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[333] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[330] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[333] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[330] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[333] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[330] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[333] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[330] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[333] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[330] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[330] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[330] [Step Debug] -> - -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[333] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[333] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[333] [Step Debug] -> - -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[330] [Step Debug] -> - -[333] [Step Debug] <- run -i 9 -[330] [Step Debug] <- run -i 9 -[333] [Step Debug] -> - -[333] Log closed at 2024-10-17 15:13:06.286587 - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:13:06.604875 - -[330] [Step Debug] -> - -[330] Log closed at 2024-10-17 15:13:06.760404 - -[333] Log opened at 2024-10-17 15:13:06.883642 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[333] [Step Debug] -> - -[330] Log opened at 2024-10-17 15:13:06.895667 -[330] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.330' -[330] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[330] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[330] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[330] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" -[330] [Step Debug] -> - -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[330] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" -[330] [Step Debug] -> - -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[333] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 4 -n max_children -v 100 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[330] [Step Debug] -> - -[333] [Step Debug] <- run -i 9 -[330] [Step Debug] <- run -i 9 -[316] Log opened at 2024-10-17 15:13:06.911355 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[330] [Step Debug] -> - -[330] Log closed at 2024-10-17 15:13:10.738927 - -[333] [Step Debug] -> - -[333] Log closed at 2024-10-17 15:13:14.666868 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:13:17.993777 - -[317] Log opened at 2024-10-17 15:13:25.202307 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:13:25.837501 - -[317] Log opened at 2024-10-17 15:13:28.827687 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:13:29.390016 - -[328] Log opened at 2024-10-17 15:14:31.222233 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:14:33.025701 - -[328] Log opened at 2024-10-17 15:14:33.243776 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[330] Log opened at 2024-10-17 15:14:33.315209 -[330] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.330' -[330] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[330] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[330] [Step Debug] -> - -[330] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[330] [Step Debug] -> - -[330] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:14:33.360301 - -[330] [Step Debug] -> - -[330] Log closed at 2024-10-17 15:14:34.063382 - -[332] Log opened at 2024-10-17 15:14:34.213935 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 9 -[302] Log opened at 2024-10-17 15:14:34.367378 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[331] Log opened at 2024-10-17 15:14:34.376066 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[331] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[302] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[331] [Step Debug] <- run -i 9 -[302] [Step Debug] <- run -i 9 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:14:34.947000 - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:14:35.250206 - -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:14:35.388761 - -[320] Log opened at 2024-10-17 15:14:35.540196 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[302] Log opened at 2024-10-17 15:14:35.554323 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 4 -[333] Log opened at 2024-10-17 15:14:37.972004 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[333] [Step Debug] -> - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:14:39.133852 - -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:14:42.719900 - -[316] Log opened at 2024-10-17 15:15:06.281383 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[333] [Step Debug] <- run -i 9 -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:15:06.971847 - -[333] [Step Debug] -> - -[333] Log closed at 2024-10-17 15:15:08.418144 - -[333] Log opened at 2024-10-17 15:15:08.665554 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[333] [Step Debug] -> - -[333] [Step Debug] <- run -i 9 -[317] Log opened at 2024-10-17 15:15:08.737541 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[333] [Step Debug] -> - -[333] Log closed at 2024-10-17 15:15:08.797399 - -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:15:09.409882 - -[327] Log opened at 2024-10-17 15:15:09.535109 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[334] Log opened at 2024-10-17 15:15:09.652154 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[317] Log opened at 2024-10-17 15:15:09.663535 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[334] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[317] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[334] [Step Debug] -> - -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[317] [Step Debug] -> - -[334] [Step Debug] <- run -i 9 -[317] [Step Debug] <- run -i 9 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 15:15:10.157584 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:15:10.486446 - -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:15:10.636325 - -[332] Log opened at 2024-10-17 15:15:10.768601 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[334] Log opened at 2024-10-17 15:15:10.784766 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[332] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[334] [Step Debug] -> - -[332] [Step Debug] <- run -i 9 -[334] [Step Debug] <- run -i 9 -[317] Log opened at 2024-10-17 15:15:10.801201 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 6 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:15:14.482506 - -[317] Log opened at 2024-10-17 15:15:15.427901 -[317] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.317' -[317] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[317] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[317] [Step Debug] -> - -[317] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[317] [Step Debug] -> - -[317] [Step Debug] <- run -i 9 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 15:15:18.135356 - -[328] Log opened at 2024-10-17 15:15:21.536997 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:15:21.867020 - -[317] [Step Debug] -> - -[317] Log closed at 2024-10-17 15:15:22.063312 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:15:22.273381 - -[328] Log opened at 2024-10-17 15:15:25.227293 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:15:25.745880 - -[331] Log opened at 2024-10-17 15:15:32.341720 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 9 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:15:32.488141 - -[302] Log opened at 2024-10-17 15:16:00.347255 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 9 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:16:02.244264 - -[302] Log opened at 2024-10-17 15:16:02.529822 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 9 -[327] Log opened at 2024-10-17 15:16:02.625659 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:16:02.678995 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:16:03.367110 - -[334] Log opened at 2024-10-17 15:16:03.592625 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 9 -[327] Log opened at 2024-10-17 15:16:03.803035 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] Log opened at 2024-10-17 15:16:03.803098 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] -> - -[327] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[333] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[333] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[333] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[333] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[333] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[333] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[333] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[333] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[333] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[333] [Step Debug] <- run -i 9 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 15:16:04.318323 - -[333] [Step Debug] -> - -[333] Log closed at 2024-10-17 15:16:04.701575 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:16:04.857006 - -[316] Log opened at 2024-10-17 15:16:04.982138 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[333] Log opened at 2024-10-17 15:16:04.989347 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[333] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[333] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[333] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[333] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[333] [Step Debug] -> - -[316] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[333] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[333] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[333] [Step Debug] -> - -[327] Log opened at 2024-10-17 15:16:05.002952 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[333] [Step Debug] <- run -i 9 -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 3 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:16:10.130308 - -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:16:14.219572 - -[327] Log opened at 2024-10-17 15:16:18.019691 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[333] [Step Debug] -> - -[333] Log closed at 2024-10-17 15:16:18.517281 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:16:18.726444 - -[327] Log opened at 2024-10-17 15:16:21.432759 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:16:22.047082 - -[328] Log opened at 2024-10-17 15:16:29.731428 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:16:29.918312 - -[331] Log opened at 2024-10-17 15:17:07.256993 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 9 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:17:07.756448 - -[302] Log opened at 2024-10-17 15:17:53.878745 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 612 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 10 -[302] [Step Debug] -> - -[302] [Step Debug] -> - -[302] [Step Debug] <- stack_get -i 11 -[302] [Step Debug] -> - -[302] [Step Debug] <- context_names -i 12 -d 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- property_get -i 14 -n "$reqData" -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- property_get -i 15 -n "$this" -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 16 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:18:21.123511 - -[316] Log opened at 2024-10-17 15:19:36.958552 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 15:19:38.190326 - -[333] Log opened at 2024-10-17 15:19:39.572964 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] Log closed at 2024-10-17 15:19:41.973285 - -[327] Log opened at 2024-10-17 15:19:42.192132 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] Log opened at 2024-10-17 15:19:42.225431 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 15:19:42.871441 - -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] Log closed at 2024-10-17 15:19:43.525888 - -[328] Log opened at 2024-10-17 15:19:43.576068 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 15:19:43.710258 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] Log opened at 2024-10-17 15:19:43.712539 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 15:19:44.780192 - -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 15:19:45.488317 - -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 15:19:45.832563 - -[327] Log opened at 2024-10-17 15:19:45.989545 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] Log opened at 2024-10-17 15:19:46.006127 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 15:19:50.051192 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 15:19:50.271106 - -[331] Log opened at 2024-10-17 15:19:53.157929 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 15:19:53.929980 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 15:19:54.345643 - -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 15:19:54.730908 - -[331] Log opened at 2024-10-17 15:19:56.352505 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 15:19:58.126296 - -[331] Log opened at 2024-10-17 15:20:02.803105 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 15:20:08.212456 - -[335] Log opened at 2024-10-17 15:20:37.678344 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] Log closed at 2024-10-17 15:20:38.864408 - -[332] Log opened at 2024-10-17 15:21:01.683569 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 612 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 725 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 11 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] <- stack_get -i 12 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_names -i 13 -d 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_remove -i 15 -d 3320013 -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 16 -[332] [Step Debug] -> - -[332] [Step Debug] <- stack_get -i 17 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_names -i 18 -d 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_remove -i 20 -d 3320014 -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 21 -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:21:20.859996 - -[328] Log opened at 2024-10-17 15:21:55.008221 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:21:58.850879 - -[333] Log opened at 2024-10-17 15:22:56.984721 -[333] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.333' -[333] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[333] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 755 -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[333] [Step Debug] -> - -[333] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[333] [Step Debug] -> - -[333] [Step Debug] <- run -i 10 -[333] [Step Debug] -> - -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 11 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 12 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- property_get -i 14 -n "$tirada" -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 15 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 16 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 17 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 18 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 20 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 21 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 22 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 24 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 25 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 26 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 27 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 28 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 29 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 30 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 32 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 33 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 34 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 35 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 36 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 37 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 38 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 40 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 41 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 42 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 43 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- property_get -i 44 -n "$resumen_totales" -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_into -i 45 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 46 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 47 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 48 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 49 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 50 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 51 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 52 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 53 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 54 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 55 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 56 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 58 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 59 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 60 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 61 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 62 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 63 -[333] [Step Debug] -> - -[333] [Step Debug] <- step_over -i 64 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 65 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 66 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- stack_get -i 67 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_names -i 68 -d 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- context_get -i 69 -d 0 -c 0 -[333] [Step Debug] -> - -[333] [Step Debug] <- run -i 70 -[333] [Step Debug] -> - -[333] Log closed at 2024-10-17 15:23:31.921364 - -[320] Log opened at 2024-10-17 15:28:56.269657 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 768 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 11 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 12 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 14 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 15 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 16 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 18 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 19 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 20 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_remove -i 22 -d 3200038 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 23 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:29:08.711896 - -[335] Log opened at 2024-10-17 15:30:02.987947 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[335] [Step Debug] -> - -[335] [Step Debug] <- run -i 9 -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 15:30:04.769210 - -[335] Log opened at 2024-10-17 15:30:05.093404 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[335] [Step Debug] -> - -[316] Log opened at 2024-10-17 15:30:05.171732 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 6 -[335] [Step Debug] <- run -i 9 -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 15:30:05.281424 - -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:30:06.125504 - -[302] Log opened at 2024-10-17 15:30:06.201959 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 9 -[328] Log opened at 2024-10-17 15:30:06.365837 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[334] Log opened at 2024-10-17 15:30:06.438535 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:30:06.935622 - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:30:07.386387 - -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 15:30:07.791625 - -[316] Log opened at 2024-10-17 15:30:07.907881 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[328] Log opened at 2024-10-17 15:30:07.933661 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 6 -[316] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:30:12.364523 - -[328] Log opened at 2024-10-17 15:30:13.952356 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:30:15.989723 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:30:16.179635 - -[328] Log opened at 2024-10-17 15:30:20.149957 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:30:20.788788 - -[328] Log opened at 2024-10-17 15:30:23.983421 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:30:28.028254 - -[331] Log opened at 2024-10-17 15:32:04.175288 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 9 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:32:07.723710 - -[336] Log opened at 2024-10-17 15:32:10.293058 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[336] [Step Debug] -> - -[336] [Step Debug] <- run -i 9 -[336] [Step Debug] -> - -[336] Log closed at 2024-10-17 15:32:13.950102 - -[302] Log opened at 2024-10-17 15:32:40.316013 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 9 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:32:44.430009 - -[332] Log opened at 2024-10-17 15:32:58.243842 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 9 -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:33:02.145904 - -[328] Log opened at 2024-10-17 15:38:55.248016 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 425 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:39:00.201985 - -[327] Log opened at 2024-10-17 15:39:07.061186 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 425 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:39:12.483018 - -[320] Log opened at 2024-10-17 15:40:47.243558 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 425 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:40:51.290615 - -[331] Log opened at 2024-10-17 15:41:11.781437 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 412 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 425 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 11 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:41:16.029663 - -[302] Log opened at 2024-10-17 15:41:21.585948 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 425 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 11 -[302] [Step Debug] -> - -[302] [Step Debug] -> - -[302] [Step Debug] <- stack_get -i 12 -[302] [Step Debug] -> - -[302] [Step Debug] <- context_names -i 13 -d 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- property_get -i 16 -n "$data[\"cubierta\"]" -p 0 -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- property_get -i 18 -n "$data[\"cubierta\"]" -p 0 -d 0 -c 0 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_remove -i 19 -d 3020039 -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 20 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:42:16.431565 - -[335] Log opened at 2024-10-17 15:42:20.099064 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 425 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[335] [Step Debug] -> - -[335] [Step Debug] <- run -i 10 -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 15:42:24.554327 - -[334] Log opened at 2024-10-17 15:42:38.966589 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 10 -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] [Step Debug] <- stack_get -i 11 -[334] [Step Debug] -> - -[334] [Step Debug] <- context_names -i 12 -d 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- property_get -i 16 -n "$data[\"sobrecubierta\"]" -p 0 -d 0 -c 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 17 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 15:43:00.846674 - -[316] Log opened at 2024-10-17 15:43:02.912285 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- stack_get -i 11 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 12 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 14 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:43:08.444534 - -[320] Log opened at 2024-10-17 15:44:12.133009 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 474 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 11 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 12 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 13 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 15 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 16 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 17 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 18 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 20 -n "$this->table" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 21 -n "$fields" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 22 -n "$fields[\"acabado_cubierta_id\"]" -p 0 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 23 -n "$fields" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 24 -n "$fields[\"acabado_cubierta_id\"]" -p 0 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 25 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 15:46:00.093625 - -[336] Log opened at 2024-10-17 15:48:09.960262 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 474 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[336] [Step Debug] -> - -[336] [Step Debug] <- run -i 11 -[336] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] -> - -[336] Log closed at 2024-10-17 15:48:14.196069 - -[302] Log opened at 2024-10-17 15:48:21.434691 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 395 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 474 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 12 -[302] [Step Debug] -> - -[302] [Step Debug] -> - -[302] [Step Debug] -> - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 15:48:25.932591 - -[332] Log opened at 2024-10-17 15:50:58.667822 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 474 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 11 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] <- stack_get -i 12 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_names -i 13 -d 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- step_over -i 16 -[332] [Step Debug] -> - -[332] [Step Debug] <- stack_get -i 17 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_names -i 18 -d 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- property_get -i 20 -n "$fields" -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- property_get -i 21 -n "$fields[\"acabado_sobrecubierta_id\"]" -p 0 -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- property_get -i 22 -n "$iva_reducido" -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_remove -i 23 -d 3320022 -[332] [Step Debug] -> - -[332] [Step Debug] <- property_get -i 24 -n "$fields" -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] <- property_get -i 26 -n "$fields" -d 0 -c 0 -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 27 -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:53:58.942784 - -[334] Log opened at 2024-10-17 15:54:13.030162 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 11 -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 15:54:17.061302 - -[316] Log opened at 2024-10-17 15:55:48.314584 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 11 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 15:55:48.857366 - -[328] Log opened at 2024-10-17 15:56:20.103880 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 11 -[328] [Step Debug] -> - -[328] [Step Debug] -> - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 15:56:24.573685 - -[327] Log opened at 2024-10-17 15:56:38.185549 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 12 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 13 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 14 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 16 -n "$acabado_id" -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 17 -n "$acabado_id" -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 18 -n "$datos_presupuesto" -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 19 -n "$datos_presupuesto" -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 20 -n "$datos_presupuesto[\"cubierta\"]" -p 0 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 21 -n "$datos_presupuesto[\"cubierta\"][\"acabadosCubierta\"]" -p 0 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 22 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 23 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 24 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 26 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 15:57:24.453827 - -[331] Log opened at 2024-10-17 15:57:25.974066 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 12 -[331] [Step Debug] -> - -[331] [Step Debug] -> - -[331] [Step Debug] -> - -[331] [Step Debug] -> - -[331] [Step Debug] <- stack_get -i 13 -[331] [Step Debug] -> - -[331] [Step Debug] <- context_names -i 14 -d 0 -[331] [Step Debug] -> - -[331] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[331] [Step Debug] -> - -[331] [Step Debug] <- property_get -i 16 -n "$datos_presupuesto" -d 0 -c 0 -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 17 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 15:58:09.064403 - -[336] Log opened at 2024-10-17 15:58:11.197718 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 394 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[336] [Step Debug] -> - -[336] [Step Debug] <- run -i 12 -[336] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 13 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 14 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_remove -i 16 -d 3360010 -[336] [Step Debug] -> - -[336] [Step Debug] <- property_get -i 17 -n "$fields" -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- run -i 18 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 19 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 20 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 21 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- property_get -i 23 -n "$fields" -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- run -i 24 -[336] [Step Debug] -> - -[336] Log closed at 2024-10-17 15:58:29.030623 - -[332] Log opened at 2024-10-17 15:58:46.213861 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 10 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 15:58:50.904873 - -[316] Log opened at 2024-10-17 15:59:06.027943 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 474 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 11 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- stack_get -i 12 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 13 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 15 -n "$fields" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 16 -n "$fields[\"acabado_cubierta_id\"]" -p 0 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_remove -i 17 -d 3160061 -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 18 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 16:00:32.676254 - -[328] Log opened at 2024-10-17 16:00:37.190590 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 16:00:41.360001 - -[327] Log opened at 2024-10-17 16:03:04.126248 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 16:03:08.793143 - -[331] Log opened at 2024-10-17 16:03:29.004067 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 10 -[331] [Step Debug] -> - -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:03:33.790851 - -[302] Log opened at 2024-10-17 16:04:07.209751 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 10 -[302] [Step Debug] -> - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 16:04:11.947264 - -[335] Log opened at 2024-10-17 16:04:16.032648 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[335] [Step Debug] -> - -[335] [Step Debug] <- run -i 10 -[335] [Step Debug] -> - -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 16:04:20.337574 - -[334] Log opened at 2024-10-17 16:05:12.075004 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1019 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 11 -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] [Step Debug] <- stack_get -i 12 -[334] [Step Debug] -> - -[334] [Step Debug] <- context_names -i 13 -d 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- property_get -i 15 -n "$direccion" -d 0 -c 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- property_get -i 16 -n "$direccion" -d 0 -c 0 -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 17 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 16:05:54.358750 - -[316] Log opened at 2024-10-17 16:05:59.817922 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 16:06:04.556634 - -[320] Log opened at 2024-10-17 16:06:38.587624 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 16:06:43.300281 - -[327] Log opened at 2024-10-17 16:07:05.941233 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 16:07:06.701557 - -[327] Log opened at 2024-10-17 16:07:06.768326 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 16:07:07.011644 - -[335] Log opened at 2024-10-17 16:07:07.288504 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] Log opened at 2024-10-17 16:07:07.290986 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[336] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[336] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[336] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[336] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[336] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] -> - -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[335] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[336] [Step Debug] -> - -[334] Log opened at 2024-10-17 16:07:07.401218 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 6 -[335] [Step Debug] <- run -i 10 -[336] [Step Debug] <- run -i 10 -[336] [Step Debug] -> - -[336] Log closed at 2024-10-17 16:07:07.838568 - -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 16:07:08.145325 - -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 16:07:08.373757 - -[328] Log opened at 2024-10-17 16:07:17.660902 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 16:07:18.424396 - -[328] Log opened at 2024-10-17 16:07:18.512437 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 16:07:18.653318 - -[320] Log opened at 2024-10-17 16:07:18.846639 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[328] Log opened at 2024-10-17 16:07:18.850921 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[320] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[320] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[328] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[320] [Step Debug] <- run -i 10 -[331] Log opened at 2024-10-17 16:07:18.992193 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 16:07:19.309113 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 16:07:19.633276 - -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:07:19.838100 - -[328] Log opened at 2024-10-17 16:07:23.036269 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 16:07:23.830446 - -[331] Log opened at 2024-10-17 16:07:23.844170 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 10 -[331] [Step Debug] -> - -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:07:24.558562 - -[328] Log opened at 2024-10-17 16:07:26.603026 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 16:07:27.366749 - -[331] Log opened at 2024-10-17 16:07:27.381405 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 10 -[331] [Step Debug] -> - -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:07:28.023388 - -[331] Log opened at 2024-10-17 16:07:32.563123 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 10 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:07:37.265546 - -[331] Log opened at 2024-10-17 16:07:37.387431 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[302] Log opened at 2024-10-17 16:07:37.393830 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 16:07:37.394466 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:07:37.394207 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[335] Log opened at 2024-10-17 16:07:37.394207 -[332] Log opened at 2024-10-17 16:07:37.394950 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[316] [Step Debug] -> - -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[331] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[316] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[332] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[335] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[302] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[316] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[316] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[332] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[335] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[335] [Step Debug] -> - -[332] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[302] [Step Debug] -> - -[327] [Step Debug] -> - -[316] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[302] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[335] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[335] [Step Debug] -> - -[331] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[332] [Step Debug] -> - -[316] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[335] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[316] [Step Debug] -> - -[335] [Step Debug] -> - -[302] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[302] [Step Debug] <- run -i 10 -[332] [Step Debug] <- run -i 10 -[335] [Step Debug] <- run -i 10 -[316] [Step Debug] <- run -i 10 -[331] [Step Debug] <- run -i 10 -[327] [Step Debug] <- run -i 10 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:07:37.637999 - -[331] Log opened at 2024-10-17 16:07:37.641301 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 6 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 16:07:38.127083 - -[327] Log opened at 2024-10-17 16:07:38.129783 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 16:07:38.250893 - -[335] Log opened at 2024-10-17 16:07:38.254457 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[335] [Step Debug] -> - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 16:07:38.398084 - -[332] Log opened at 2024-10-17 16:07:38.400272 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 16:07:38.642496 - -[302] Log opened at 2024-10-17 16:07:38.645471 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 16:07:38.787041 - -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:07:38.956532 - -[332] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[335] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[302] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[327] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[335] [Step Debug] -> - -[327] [Step Debug] -> - -[302] [Step Debug] -> - -[332] [Step Debug] -> - -[336] Log opened at 2024-10-17 16:08:16.224392 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[336] [Step Debug] -> - -[327] [Step Debug] <- run -i 11 -[302] [Step Debug] <- run -i 11 -[332] [Step Debug] <- run -i 11 -[335] [Step Debug] <- run -i 11 -[336] [Step Debug] <- run -i 11 -[336] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 12 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 13 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- property_get -i 15 -n "$resultado_presupuesto" -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- property_get -i 16 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- property_get -i 17 -n "$resultado_presupuesto[\"info\"][\"interior\"]" -p 0 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- step_over -i 18 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 19 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 20 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- step_over -i 22 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 23 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 24 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- property_get -i 26 -n "$id" -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- step_over -i 27 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 28 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 29 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 30 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- step_over -i 32 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 33 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 34 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 35 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- step_over -i 36 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 37 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 38 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- step_over -i 40 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 41 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 42 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 43 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- step_over -i 44 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 45 -[336] [Step Debug] -> - -[336] [Step Debug] <- stack_get -i 46 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_names -i 47 -d 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- context_get -i 48 -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- property_get -i 49 -n "$this->guardarLineaPresupuesto" -d 0 -c 0 -[336] [Step Debug] -> - -[336] [Step Debug] <- run -i 50 -[336] [Step Debug] -> - -[336] Log closed at 2024-10-17 16:09:11.746646 - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 16:09:11.902123 - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 16:09:12.049489 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 16:09:12.209037 - -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 16:09:12.366382 - -[335] Log opened at 2024-10-17 16:09:12.704639 -[335] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.335' -[335] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[335] [Step Debug] -> - -[335] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[335] [Step Debug] -> - -[302] Log opened at 2024-10-17 16:09:12.718559 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[335] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[335] [Step Debug] -> - -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[335] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[335] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[335] [Step Debug] -> - -[335] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[335] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[302] [Step Debug] -> - -[335] [Step Debug] <- run -i 11 -[302] [Step Debug] <- run -i 9 -[327] Log opened at 2024-10-17 16:09:12.870316 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[332] Log opened at 2024-10-17 16:09:12.882724 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[320] Log opened at 2024-10-17 16:09:12.905919 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[336] Log opened at 2024-10-17 16:09:12.918919 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[336] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[332] [Step Debug] -> - -[320] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[332] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[327] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[336] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[332] [Step Debug] -> - -[320] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[336] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[320] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[336] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[320] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[320] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[332] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[336] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[327] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[336] [Step Debug] -> - -[320] [Step Debug] -> - -[327] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] -> - -[336] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[327] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[336] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[320] [Step Debug] -> - -[327] [Step Debug] -> - -[336] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[320] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[332] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[336] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[336] [Step Debug] -> - -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 16:09:13.502650 - -[302] Log opened at 2024-10-17 16:09:13.505633 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 11 -[320] [Step Debug] <- run -i 15 -[336] [Step Debug] <- run -i 15 -[332] [Step Debug] <- run -i 15 -[327] [Step Debug] <- run -i 15 -[335] [Step Debug] -> - -[335] Log closed at 2024-10-17 16:09:13.846318 - -[328] Log opened at 2024-10-17 16:09:13.851539 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 11 -[336] [Step Debug] -> - -[336] Log closed at 2024-10-17 16:09:14.160240 - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 16:09:14.700379 - -[302] Log opened at 2024-10-17 16:09:14.715011 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] Log opened at 2024-10-17 16:09:14.716528 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] -> - -[336] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[302] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[336] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[302] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[336] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[302] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[336] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[302] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[336] [Step Debug] -> - -[302] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[302] [Step Debug] -> - -[336] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[336] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[336] [Step Debug] -> - -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[302] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[302] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[302] [Step Debug] -> - -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[336] [Step Debug] -> - -[336] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[336] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[302] [Step Debug] -> - -[302] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[302] [Step Debug] -> - -[302] [Step Debug] <- run -i 11 -[336] [Step Debug] <- run -i 11 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 16:09:15.305526 - -[320] Log opened at 2024-10-17 16:09:15.307562 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 11 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 16:09:15.970650 - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 16:09:16.617554 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 16:09:16.753848 - -[302] [Step Debug] -> - -[302] Log closed at 2024-10-17 16:09:16.935582 - -[336] [Step Debug] -> - -[336] Log closed at 2024-10-17 16:09:17.109468 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 16:09:17.266655 - -[331] Log opened at 2024-10-17 16:09:50.064408 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[331] [Step Debug] -> - -[331] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[331] [Step Debug] -> - -[331] [Step Debug] <- run -i 11 -[331] [Step Debug] -> - -[331] [Step Debug] -> - -[334] Log opened at 2024-10-17 16:09:51.867023 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 806 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 11 -[331] [Step Debug] -> - -[331] Log closed at 2024-10-17 16:09:57.831955 - -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] [Step Debug] <- stop -i 12 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 16:10:09.607438 - -[328] Log opened at 2024-10-17 16:10:16.353465 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:10:29.462048 - -[327] Log opened at 2024-10-17 16:10:39.989694 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:10:45.997240 - -[327] Log opened at 2024-10-17 16:10:46.121189 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 16:10:46.129524 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 16:10:46.130359 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[332] Log opened at 2024-10-17 16:10:46.129805 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:10:46.130845 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[336] Log opened at 2024-10-17 16:10:46.130368 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:10:46.826916 - -[327] Log opened at 2024-10-17 16:10:46.832925 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:10:47.352805 - -[316] Log opened at 2024-10-17 16:10:47.355019 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:10:47.695910 - -[320] Log opened at 2024-10-17 16:10:47.698858 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:10:48.050532 - -[302] Log opened at 2024-10-17 16:10:48.052629 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] Log closed at 2024-10-17 16:10:48.402841 - -[336] Log opened at 2024-10-17 16:10:48.404982 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:10:48.853383 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:10:49.189244 - -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:10:49.532381 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:10:49.881102 - -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:10:50.214503 - -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] Log closed at 2024-10-17 16:10:50.564855 - -[320] Log opened at 2024-10-17 16:10:50.626750 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] Log opened at 2024-10-17 16:10:50.633538 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:10:50.715052 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:10:50.724254 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 16:10:50.739658 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 16:10:50.748144 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] Log closed at 2024-10-17 16:10:52.040352 - -[336] Log opened at 2024-10-17 16:10:52.043687 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:10:52.753389 - -[331] Log opened at 2024-10-17 16:10:52.755960 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:10:53.583585 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:10:54.334161 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:10:54.742366 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:10:55.598633 - -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] Log closed at 2024-10-17 16:10:56.366566 - -[302] Log opened at 2024-10-17 16:10:56.385965 -[316] Log opened at 2024-10-17 16:10:56.385965 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[336] Log opened at 2024-10-17 16:10:56.385965 -[336] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.336' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:10:56.885662 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:10:57.541488 - -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[336] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[336] Log closed at 2024-10-17 16:10:57.909284 - -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:10:58.309952 - -[338] Log opened at 2024-10-17 16:12:52.786306 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:12:55.128964 - -[338] Log opened at 2024-10-17 16:12:55.363386 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 16:12:55.473782 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:12:56.047825 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:12:56.700179 - -[332] Log opened at 2024-10-17 16:12:56.758465 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 16:12:56.894554 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 16:12:56.920677 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:12:57.977791 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:12:58.718052 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:12:59.055231 - -[331] Log opened at 2024-10-17 16:12:59.171988 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 16:12:59.199481 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:13:04.883801 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:13:08.955731 - -[320] Log opened at 2024-10-17 16:13:11.640235 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:13:12.821325 - -[316] Log opened at 2024-10-17 16:15:14.120302 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:15:15.442481 - -[334] Log opened at 2024-10-17 16:15:15.757667 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:15:16.675996 - -[328] Log opened at 2024-10-17 16:15:35.891084 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:15:37.597040 - -[328] Log opened at 2024-10-17 16:15:37.719296 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] Log opened at 2024-10-17 16:15:37.723940 -[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:15:38.382009 - -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] Log closed at 2024-10-17 16:15:38.949066 - -[339] Log opened at 2024-10-17 16:15:38.993247 -[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:15:39.150189 -[338] Log opened at 2024-10-17 16:15:39.150151 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:15:40.109534 - -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] Log closed at 2024-10-17 16:15:40.838398 - -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:15:41.176373 - -[332] Log opened at 2024-10-17 16:15:41.271434 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] Log opened at 2024-10-17 16:15:41.276858 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 16:15:41.284662 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log opened at 2024-10-17 16:15:44.737075 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:15:45.964607 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:15:49.677204 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:15:53.710591 - -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] Log opened at 2024-10-17 16:15:53.822656 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:15:54.139474 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:15:55.046456 - -[302] Log opened at 2024-10-17 16:16:00.014036 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:16:01.167650 - -[302] Log opened at 2024-10-17 16:16:05.149868 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:16:10.497689 - -[302] Log opened at 2024-10-17 16:16:10.592780 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:16:13.045499 - -[302] Log opened at 2024-10-17 16:16:13.228345 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 16:16:13.232138 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:16:13.891389 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:16:14.577239 - -[302] Log opened at 2024-10-17 16:16:14.629736 -[302] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.302' -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 16:16:14.769282 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:16:14.783226 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:16:15.776206 - -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[302] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[302] Log closed at 2024-10-17 16:16:16.506196 - -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:16:16.871160 - -[320] Log opened at 2024-10-17 16:16:16.987008 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:16:16.998380 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] Log opened at 2024-10-17 16:16:17.010706 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:16:21.367551 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:16:25.620411 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:16:29.696637 - -[327] Log opened at 2024-10-17 16:24:02.473060 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:24:03.636349 - -[327] Log opened at 2024-10-17 16:24:05.972970 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:24:07.073046 - -[327] Log opened at 2024-10-17 16:24:11.373282 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:24:16.008753 - -[328] Log opened at 2024-10-17 16:25:14.846839 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:25:17.400340 - -[328] Log opened at 2024-10-17 16:25:17.624204 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] Log opened at 2024-10-17 16:25:17.689257 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:25:18.285837 - -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:25:18.855215 - -[338] Log opened at 2024-10-17 16:25:18.903186 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:25:19.059653 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[332] Log opened at 2024-10-17 16:25:19.059654 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:25:20.151462 - -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:25:20.873523 - -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:25:21.211135 - -[331] Log opened at 2024-10-17 16:25:21.346575 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:25:21.359663 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:25:21.370795 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log opened at 2024-10-17 16:25:23.188398 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:25:26.192783 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:25:29.992372 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:25:33.979805 - -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:25:34.385678 - -[327] Log opened at 2024-10-17 16:25:42.789807 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:25:43.957460 - -[327] Log opened at 2024-10-17 16:25:44.829768 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:25:45.928343 - -[327] Log opened at 2024-10-17 16:25:48.582787 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:25:54.207520 - -[339] Log opened at 2024-10-17 16:26:59.768988 -[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] Log closed at 2024-10-17 16:27:02.250572 - -[339] Log opened at 2024-10-17 16:27:02.427494 -[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 16:27:02.433820 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] Log closed at 2024-10-17 16:27:03.107213 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:27:03.632293 - -[340] Log opened at 2024-10-17 16:27:03.681568 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 16:27:03.821055 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] Log opened at 2024-10-17 16:27:03.825167 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:27:04.863335 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:27:05.608293 - -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:27:05.956530 - -[320] Log opened at 2024-10-17 16:27:06.072898 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] Log opened at 2024-10-17 16:27:06.084237 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] Log opened at 2024-10-17 16:27:06.095236 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:27:10.327798 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:27:13.987127 - -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:27:17.948225 - -[332] Log opened at 2024-10-17 16:27:35.595827 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:27:36.718593 - -[332] Log opened at 2024-10-17 16:27:41.126727 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:27:42.277546 - -[332] Log opened at 2024-10-17 16:27:45.935825 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:27:51.403102 - -[334] Log opened at 2024-10-17 16:28:23.778208 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:28:28.861284 - -[327] Log opened at 2024-10-17 16:30:33.797795 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:30:36.510271 - -[327] Log opened at 2024-10-17 16:30:36.693750 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 16:30:36.697411 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:30:37.344927 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:30:37.829204 - -[340] Log opened at 2024-10-17 16:30:37.881361 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] Log opened at 2024-10-17 16:30:38.016591 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] Log opened at 2024-10-17 16:30:38.016907 -[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:30:39.120421 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:30:39.845100 - -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] Log closed at 2024-10-17 16:30:40.221711 - -[331] Log opened at 2024-10-17 16:30:40.363160 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] Log opened at 2024-10-17 16:30:40.377257 -[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] Log opened at 2024-10-17 16:30:40.391947 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log opened at 2024-10-17 16:30:41.750076 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:30:49.929988 - -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:30:55.636585 - -[338] Log opened at 2024-10-17 16:30:58.510392 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[339] Log closed at 2024-10-17 16:30:59.708021 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:31:00.136319 - -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:31:00.547160 - -[338] Log opened at 2024-10-17 16:31:03.371387 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:31:04.539509 - -[338] Log opened at 2024-10-17 16:31:08.030112 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:31:13.277667 - -[328] Log opened at 2024-10-17 16:32:53.280410 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:32:55.841931 - -[328] Log opened at 2024-10-17 16:32:56.063291 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] Log opened at 2024-10-17 16:32:56.126088 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:32:56.720429 - -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:32:57.439701 - -[334] Log opened at 2024-10-17 16:32:57.486612 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:32:57.635995 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 16:32:57.638705 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:32:58.673139 - -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:32:59.535601 - -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:32:59.875548 - -[320] Log opened at 2024-10-17 16:32:59.994399 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:33:00.002034 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 16:33:00.014475 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:33:04.444235 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:33:08.214943 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:33:12.544217 - -[340] Log opened at 2024-10-17 16:33:13.392898 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:33:14.529352 - -[340] Log opened at 2024-10-17 16:33:19.495934 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:33:21.363011 - -[340] Log opened at 2024-10-17 16:33:24.886814 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:33:30.016641 - -[327] Log opened at 2024-10-17 16:33:38.144301 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:33:39.901030 - -[327] Log opened at 2024-10-17 16:33:40.085566 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] Log opened at 2024-10-17 16:33:40.090732 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:33:40.748146 - -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:33:41.317661 - -[338] Log opened at 2024-10-17 16:33:41.361764 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 16:33:41.502412 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 16:33:41.503926 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:33:42.438994 - -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:33:43.168081 - -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 16:33:43.539488 - -[316] Log opened at 2024-10-17 16:33:43.647372 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:33:48.532808 - -[316] Log opened at 2024-10-17 16:33:51.293230 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:33:52.586119 - -[316] Log opened at 2024-10-17 16:33:55.831372 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:33:57.314792 - -[316] Log opened at 2024-10-17 16:34:01.786767 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:34:06.775338 - -[316] Log opened at 2024-10-17 16:34:06.832398 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:34:09.493060 - -[316] Log opened at 2024-10-17 16:34:09.618605 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] Log opened at 2024-10-17 16:34:09.631892 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:34:10.276581 - -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:34:10.785163 - -[316] Log opened at 2024-10-17 16:34:10.847234 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] Log opened at 2024-10-17 16:34:10.970811 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[328] Log opened at 2024-10-17 16:34:10.970811 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:34:11.972765 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:34:12.704373 - -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:34:13.055140 - -[331] Log opened at 2024-10-17 16:34:13.171341 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] Log opened at 2024-10-17 16:34:13.183147 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:34:13.196819 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:34:17.922129 - -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:34:21.907379 - -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:34:25.927794 - -[340] Log opened at 2024-10-17 16:37:03.709873 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:37:05.415986 - -[340] Log opened at 2024-10-17 16:37:05.593741 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:37:06.859611 - -[338] Log opened at 2024-10-17 16:37:06.921600 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] Log opened at 2024-10-17 16:37:07.015263 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 16:37:07.038785 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:37:08.005806 - -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:37:08.770987 - -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:37:09.120441 - -[334] Log opened at 2024-10-17 16:37:09.215061 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 16:37:09.220926 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 16:37:09.230679 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log opened at 2024-10-17 16:37:11.003410 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:37:13.422499 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:37:17.891493 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 16:37:23.708392 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:37:24.662582 - -[331] Log opened at 2024-10-17 16:37:24.855605 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:37:24.920347 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:37:25.513684 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:26.171589 - -[320] Log opened at 2024-10-17 16:37:26.215627 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] Log opened at 2024-10-17 16:37:26.336548 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:37:26.340497 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:37:27.325496 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:37:28.059310 - -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:28.394733 - -[338] Log opened at 2024-10-17 16:37:28.485019 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] Log opened at 2024-10-17 16:37:28.491408 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] Log opened at 2024-10-17 16:37:28.498328 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:37:32.782577 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:37.250303 - -[332] Log opened at 2024-10-17 16:37:40.683622 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:37:41.301019 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:41.814159 - -[332] Log opened at 2024-10-17 16:37:43.412795 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:44.494949 - -[332] Log opened at 2024-10-17 16:37:47.840813 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:52.920722 - -[332] Log opened at 2024-10-17 16:37:52.973471 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:55.512654 - -[332] Log opened at 2024-10-17 16:37:55.701834 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] Log opened at 2024-10-17 16:37:55.709073 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:56.347757 - -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:37:56.814971 - -[332] Log opened at 2024-10-17 16:37:56.872362 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] Log opened at 2024-10-17 16:37:56.968753 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 16:37:56.988482 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:37:58.082878 - -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] Log closed at 2024-10-17 16:37:58.832579 - -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 16:37:59.176731 - -[334] Log opened at 2024-10-17 16:37:59.290513 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 16:37:59.301168 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 16:37:59.313328 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 16:38:03.508326 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 16:38:07.344116 - -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 16:38:11.313574 - -[320] Log opened at 2024-10-17 16:38:55.254111 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 16:39:00.392224 - -[316] Log opened at 2024-10-17 16:43:06.944964 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:43:08.172215 - -[316] Log opened at 2024-10-17 16:43:10.184472 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 16:43:11.339308 - -[331] Log opened at 2024-10-17 16:43:16.694322 -[331] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.331' -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log opened at 2024-10-17 16:43:20.829353 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[331] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[331] Log closed at 2024-10-17 16:43:21.715595 - -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:43:26.154194 - -[328] Log opened at 2024-10-17 16:43:29.663191 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:43:34.475729 - -[328] Log opened at 2024-10-17 16:43:35.139062 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] Log closed at 2024-10-17 16:43:40.398245 - -[338] Log opened at 2024-10-17 16:43:52.811932 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 16:43:58.164055 - -[332] Log opened at 2024-10-17 16:44:50.004821 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 787 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 810 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1047 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 12 -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 16:44:56.207032 - -[327] Log opened at 2024-10-17 16:44:59.395177 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 787 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 810 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1047 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 12 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 13 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 14 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_remove -i 16 -d 3270082 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 17 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 18 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 19 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 21 -n "$presupuestoId" -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 22 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 16:45:47.258336 - -[340] Log opened at 2024-10-17 16:45:51.550580 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 787 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[340] [Step Debug] <- run -i 10 -[340] [Step Debug] -> - -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 16:45:56.961840 - -[320] Log opened at 2024-10-17 16:48:36.859125 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 787 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 16:48:42.523481 - -[328] Log opened at 2024-10-17 17:05:20.950745 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 17:05:22.053007 - -[338] Log opened at 2024-10-17 17:05:22.406728 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[338] [Step Debug] -> - -[338] [Step Debug] <- run -i 9 -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:05:22.541799 - -[332] Log opened at 2024-10-17 17:06:14.554238 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 9 -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 17:06:15.666747 - -[341] Log opened at 2024-10-17 17:06:27.438343 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 9 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:06:29.458983 - -[340] Log opened at 2024-10-17 17:06:29.642928 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[341] Log opened at 2024-10-17 17:06:29.651593 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[340] [Step Debug] -> - -[341] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[341] [Step Debug] -> - -[340] [Step Debug] <- run -i 9 -[341] [Step Debug] <- run -i 9 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:06:29.766131 - -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:06:30.359431 - -[316] Log opened at 2024-10-17 17:06:30.559398 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[327] Log opened at 2024-10-17 17:06:30.807870 -[320] Log opened at 2024-10-17 17:06:30.807869 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[327] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[327] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:06:31.339350 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:06:31.669975 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:06:31.820770 - -[320] Log opened at 2024-10-17 17:06:31.964505 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[327] Log opened at 2024-10-17 17:06:31.977885 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" -[320] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n max_children -v 100 -[327] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 -[320] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 9 -[341] Log opened at 2024-10-17 17:06:32.013566 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:06:35.843449 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:06:39.702436 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:06:43.474070 - -[328] Log opened at 2024-10-17 17:07:07.457675 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[328] [Step Debug] -> - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 17:07:08.596496 - -[332] Log opened at 2024-10-17 17:08:30.564601 -[332] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.332' -[332] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[332] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[332] [Step Debug] -> - -[332] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[332] [Step Debug] -> - -[332] [Step Debug] <- run -i 10 -[332] [Step Debug] -> - -[332] [Step Debug] -> - -[332] Log closed at 2024-10-17 17:08:31.679270 - -[343] Log opened at 2024-10-17 17:08:31.902084 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 10 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:08:32.144488 - -[334] Log opened at 2024-10-17 17:08:43.989919 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 10 -[334] [Step Debug] -> - -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 17:08:45.118029 - -[340] Log opened at 2024-10-17 17:08:45.242719 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[340] [Step Debug] <- run -i 10 -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:08:45.458036 - -[316] Log opened at 2024-10-17 17:08:56.336780 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:08:58.318530 - -[316] Log opened at 2024-10-17 17:08:58.510317 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[327] Log opened at 2024-10-17 17:08:58.602247 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 6 -[316] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:08:58.674113 - -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:08:59.317655 - -[328] Log opened at 2024-10-17 17:08:59.555523 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 10 -[320] Log opened at 2024-10-17 17:08:59.838307 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[341] Log opened at 2024-10-17 17:08:59.841977 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[320] [Step Debug] -> - -[341] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[320] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[341] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:09:00.375583 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 17:09:00.705185 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:09:00.862167 - -[320] Log opened at 2024-10-17 17:09:00.980222 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[341] Log opened at 2024-10-17 17:09:00.992959 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[341] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[341] [Step Debug] -> - -[320] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[341] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[320] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[341] [Step Debug] -> - -[338] Log opened at 2024-10-17 17:09:01.015168 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- run -i 6 -[320] [Step Debug] <- run -i 10 -[341] [Step Debug] <- run -i 10 -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 101 -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:09:04.820678 - -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:09:08.191571 - -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- stop -i 11 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:09:11.655931 - -[334] Log opened at 2024-10-17 17:09:39.161505 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 9 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 17:09:40.243659 - -[340] Log opened at 2024-10-17 17:09:40.433555 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[340] [Step Debug] <- run -i 9 -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:09:40.606344 - -[344] Log opened at 2024-10-17 17:10:02.571230 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[344] [Step Debug] <- run -i 9 -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:10:04.659380 - -[344] Log opened at 2024-10-17 17:10:04.808832 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[328] Log opened at 2024-10-17 17:10:04.814398 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[328] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[344] [Step Debug] <- run -i 9 -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:10:04.884419 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 17:10:05.456648 - -[328] Log opened at 2024-10-17 17:10:05.602278 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[316] Log opened at 2024-10-17 17:10:05.820459 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[327] Log opened at 2024-10-17 17:10:05.824635 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[327] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:10:06.346594 - -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 17:10:06.669217 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:10:06.823536 - -[316] Log opened at 2024-10-17 17:10:06.962032 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[327] Log opened at 2024-10-17 17:10:06.976067 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[344] Log opened at 2024-10-17 17:10:07.007676 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- run -i 6 -[316] [Step Debug] <- run -i 9 -[327] [Step Debug] <- run -i 6 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:10:11.383197 - -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:10:15.351154 - -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:10:19.084884 - -[320] Log opened at 2024-10-17 17:10:26.026160 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:10:28.159443 - -[338] Log opened at 2024-10-17 17:10:28.314791 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[338] [Step Debug] -> - -[320] Log opened at 2024-10-17 17:10:28.318481 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[338] [Step Debug] -> - -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[338] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[338] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[338] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[338] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[338] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[338] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[338] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 9 -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:10:28.414863 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:10:28.977409 - -[338] Log opened at 2024-10-17 17:10:29.023091 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[338] [Step Debug] -> - -[338] [Step Debug] <- run -i 9 -[341] Log opened at 2024-10-17 17:10:29.201023 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[343] Log opened at 2024-10-17 17:10:29.206410 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[341] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 9 -[343] [Step Debug] <- run -i 9 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:10:29.809722 - -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:10:30.118244 - -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:10:30.266009 - -[341] Log opened at 2024-10-17 17:10:30.400793 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[343] Log opened at 2024-10-17 17:10:30.409588 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[343] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[343] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[341] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[343] [Step Debug] -> - -[341] [Step Debug] <- run -i 9 -[343] [Step Debug] <- run -i 9 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:10:34.156921 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:10:38.131504 - -[316] Log opened at 2024-10-17 17:11:11.069153 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:11:13.238196 - -[316] Log opened at 2024-10-17 17:11:13.409314 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[327] Log opened at 2024-10-17 17:11:13.413737 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[327] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:11:13.536682 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:11:14.103309 - -[327] Log opened at 2024-10-17 17:11:14.290005 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[344] Log opened at 2024-10-17 17:11:14.562178 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[344] [Step Debug] <- run -i 9 -[338] Log opened at 2024-10-17 17:11:14.606532 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[338] [Step Debug] -> - -[338] [Step Debug] <- run -i 9 -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:11:15.088038 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:11:15.375097 - -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:11:15.517863 - -[344] Log opened at 2024-10-17 17:11:15.631735 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[338] Log opened at 2024-10-17 17:11:15.643323 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[338] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[338] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[338] [Step Debug] -> - -[344] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[338] [Step Debug] -> - -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[338] [Step Debug] -> - -[320] Log opened at 2024-10-17 17:11:15.657343 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[338] [Step Debug] <- run -i 9 -[344] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 6 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:11:19.628938 - -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:11:23.175343 - -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:11:26.912074 - -[343] Log opened at 2024-10-17 17:11:38.749214 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 9 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:11:40.735453 - -[343] Log opened at 2024-10-17 17:11:40.858674 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[334] Log opened at 2024-10-17 17:11:40.864708 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[343] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[334] [Step Debug] -> - -[343] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 9 -[334] [Step Debug] <- run -i 9 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:11:41.001134 - -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 17:11:41.561562 - -[334] Log opened at 2024-10-17 17:11:41.720546 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[334] [Step Debug] -> - -[334] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 9 -[343] Log opened at 2024-10-17 17:11:41.883526 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 17:11:41.883527 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[343] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[340] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[340] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[343] [Step Debug] -> - -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[340] [Step Debug] <- run -i 9 -[343] [Step Debug] <- run -i 9 -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:11:42.487883 - -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 17:11:42.799077 - -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:11:42.945235 - -[340] Log opened at 2024-10-17 17:11:43.066038 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[343] Log opened at 2024-10-17 17:11:43.084441 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[340] [Step Debug] <- run -i 9 -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 3 -[328] Log opened at 2024-10-17 17:11:43.094879 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[328] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:11:47.102372 - -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:11:50.539032 - -[341] Log opened at 2024-10-17 17:12:15.487486 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[328] [Step Debug] <- run -i 9 -[341] [Step Debug] <- run -i 9 -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 17:12:19.471318 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:12:21.057553 - -[341] Log opened at 2024-10-17 17:12:21.243510 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[344] Log opened at 2024-10-17 17:12:21.250093 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[341] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[344] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[341] [Step Debug] <- run -i 9 -[344] [Step Debug] <- run -i 9 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:12:21.377924 - -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:12:21.963910 - -[344] Log opened at 2024-10-17 17:12:22.192502 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[344] [Step Debug] <- run -i 9 -[320] Log opened at 2024-10-17 17:12:22.427368 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[338] Log opened at 2024-10-17 17:12:22.428469 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[338] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[338] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[338] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[338] [Step Debug] -> - -[320] [Step Debug] -> - -[338] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:12:23.018296 - -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:12:23.353569 - -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:12:23.504198 - -[320] Log opened at 2024-10-17 17:12:23.616255 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[338] Log opened at 2024-10-17 17:12:23.627313 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[338] [Step Debug] -> - -[320] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[338] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[338] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 4 -n max_children -v 100 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[338] [Step Debug] -> - -[338] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[338] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[338] [Step Debug] <- run -i 9 -[334] Log opened at 2024-10-17 17:12:23.643929 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[334] [Step Debug] -> - -[334] [Step Debug] <- run -i 4 -[334] [Step Debug] -> - -[334] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 -[334] [Step Debug] -> - -[334] Log closed at 2024-10-17 17:12:27.712490 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 17:12:31.565344 - -[338] [Step Debug] -> - -[338] Log closed at 2024-10-17 17:12:35.442168 - -[340] Log opened at 2024-10-17 17:13:08.444625 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[340] [Step Debug] <- run -i 9 -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:13:10.489279 - -[340] Log opened at 2024-10-17 17:13:10.657777 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[327] Log opened at 2024-10-17 17:13:10.663224 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[340] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[340] [Step Debug] <- run -i 9 -[327] [Step Debug] <- run -i 9 -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:13:10.788151 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:13:11.334301 - -[327] Log opened at 2024-10-17 17:13:11.719423 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[316] Log opened at 2024-10-17 17:13:11.784896 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[340] Log opened at 2024-10-17 17:13:11.798974 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[340] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[340] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:13:12.401416 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:13:12.727033 - -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:13:12.877105 - -[316] Log opened at 2024-10-17 17:13:13.003938 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[340] Log opened at 2024-10-17 17:13:13.012284 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[340] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[340] [Step Debug] -> - -[340] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[340] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[340] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[340] [Step Debug] -> - -[340] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[340] [Step Debug] -> - -[328] Log opened at 2024-10-17 17:13:13.028389 -[328] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.328' -[328] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[328] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[328] [Step Debug] -> - -[328] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[328] [Step Debug] -> - -[340] [Step Debug] <- run -i 9 -[316] [Step Debug] <- run -i 9 -[328] [Step Debug] <- run -i 6 -[328] [Step Debug] -> - -[328] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[328] [Step Debug] -> - -[328] Log closed at 2024-10-17 17:13:16.986345 - -[340] [Step Debug] -> - -[340] Log closed at 2024-10-17 17:13:20.512080 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 17:13:24.313579 - -[344] Log opened at 2024-10-17 17:13:54.769474 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[344] [Step Debug] <- run -i 9 -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:13:58.558933 - -[343] Log opened at 2024-10-17 17:15:51.315177 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 17:15:54.117376 - -[343] Log opened at 2024-10-17 17:15:54.334087 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 17:15:54.404221 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 17:15:54.992385 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 17:15:55.588172 - -[334] Log opened at 2024-10-17 17:15:55.637312 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 17:15:55.761775 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 17:15:55.773047 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 17:15:56.862018 - -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 17:15:57.594864 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 17:15:57.947278 - -[338] Log opened at 2024-10-17 17:15:58.076631 -[338] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.338' -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 17:15:58.085493 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 17:15:58.098629 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[338] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[338] Log closed at 2024-10-17 17:16:02.710273 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 17:16:06.365253 - -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 17:16:14.362284 - -[344] Log opened at 2024-10-17 17:16:30.001011 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] Log closed at 2024-10-17 17:16:32.838725 - -[344] Log opened at 2024-10-17 17:16:33.062175 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 17:16:33.127322 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] Log closed at 2024-10-17 17:16:33.750491 - -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 17:16:34.503663 - -[345] Log opened at 2024-10-17 17:16:34.600191 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] Log opened at 2024-10-17 17:16:34.798204 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log opened at 2024-10-17 17:16:34.864132 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 17:16:35.885226 - -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 17:16:36.621171 - -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 17:16:36.966077 - -[334] Log opened at 2024-10-17 17:16:37.187138 -[334] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.334' -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 17:16:37.199475 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 17:16:37.214475 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[334] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[334] Log closed at 2024-10-17 17:16:41.795248 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 17:16:45.820450 - -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 17:16:50.006153 - -[340] Log opened at 2024-10-17 17:17:12.959200 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 17:17:15.553997 - -[340] Log opened at 2024-10-17 17:17:15.782853 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] Log opened at 2024-10-17 17:17:15.840467 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 17:17:16.442271 - -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] Log closed at 2024-10-17 17:17:17.053370 - -[345] Log opened at 2024-10-17 17:17:17.229257 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 17:17:17.426737 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[341] Log opened at 2024-10-17 17:17:17.426172 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 17:17:18.531576 - -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 17:17:19.275262 - -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 17:17:19.608479 - -[341] Log opened at 2024-10-17 17:17:19.784413 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 17:17:24.135687 - -[320] Log opened at 2024-10-17 17:17:49.077860 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 17:17:51.846374 - -[320] Log opened at 2024-10-17 17:17:52.066726 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] Log opened at 2024-10-17 17:17:52.128881 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 17:17:52.725972 - -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] Log closed at 2024-10-17 17:17:53.342085 - -[347] Log opened at 2024-10-17 17:17:53.413209 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 17:17:53.529016 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 17:17:53.533629 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 17:17:54.567767 - -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 17:17:55.299536 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 17:17:55.654624 - -[345] Log opened at 2024-10-17 17:17:55.765336 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] Log opened at 2024-10-17 17:17:55.777278 -[340] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.340' -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 17:17:55.788451 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[340] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[340] Log closed at 2024-10-17 17:18:00.086482 - -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 17:18:03.893060 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 17:18:08.024025 - -[341] Log opened at 2024-10-17 17:18:47.867215 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 17:18:50.581082 - -[341] Log opened at 2024-10-17 17:18:50.818324 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 17:18:50.886200 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 17:18:51.483678 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 17:18:52.231572 - -[348] Log opened at 2024-10-17 17:18:52.323591 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] Log opened at 2024-10-17 17:18:52.468186 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[343] Log opened at 2024-10-17 17:18:52.468186 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 17:18:53.537533 - -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 17:18:54.257510 - -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] Log closed at 2024-10-17 17:18:54.632833 - -[320] Log opened at 2024-10-17 17:18:54.757079 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 17:18:54.769844 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] Log opened at 2024-10-17 17:18:54.781871 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] Log closed at 2024-10-17 17:18:59.201303 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 17:19:03.083386 - -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 17:19:07.202135 - -[345] Log opened at 2024-10-17 17:19:22.410219 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 17:19:27.152065 - -[345] Log opened at 2024-10-17 17:19:29.606412 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 17:19:34.213421 - -[345] Log opened at 2024-10-17 17:19:36.860833 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 17:19:38.026456 - -[345] Log opened at 2024-10-17 17:19:40.900210 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 17:19:42.051196 - -[327] Log opened at 2024-10-17 17:19:49.442886 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 17:19:55.117464 - -[349] Log opened at 2024-10-17 17:20:15.927867 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 10 -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 17:20:20.233002 - -[348] Log opened at 2024-10-17 17:20:21.490933 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 11 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 12 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- property_get -i 14 -n "$acabado_id" -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 15 -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 17:20:32.975692 - -[347] Log opened at 2024-10-17 17:20:45.877396 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2075 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 11 -[347] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 12 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 13 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 15 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 16 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 17 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 18 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 20 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 21 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 22 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 23 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 24 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 26 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 27 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 29 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 30 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 31 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 33 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 34 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 35 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 37 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 38 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 39 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 41 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 42 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 43 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 44 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 45 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 46 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 47 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 48 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 50 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 51 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 52 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 53 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 54 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 55 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 56 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 58 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 59 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 60 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 61 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_remove -i 62 -d 3470002 -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 63 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 64 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 65 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 66 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 67 -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 17:22:51.686856 - -[344] Log opened at 2024-10-17 17:22:53.941728 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[344] [Step Debug] -> - -[344] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[344] [Step Debug] -> - -[344] [Step Debug] <- run -i 10 -[344] [Step Debug] -> - -[344] [Step Debug] -> - -[344] Log closed at 2024-10-17 17:22:57.451038 - -[345] Log opened at 2024-10-17 17:23:11.206474 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[345] [Step Debug] -> - -[345] [Step Debug] <- run -i 10 -[345] [Step Debug] -> - -[345] [Step Debug] -> - -[345] Log closed at 2024-10-17 17:23:14.308810 - -[349] Log opened at 2024-10-17 17:23:50.466742 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 779 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 785 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 11 -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 17:23:53.900267 - -[341] Log opened at 2024-10-17 17:25:16.430673 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 775 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 779 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 785 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 12 -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:25:19.925585 - -[347] Log opened at 2024-10-17 17:28:24.546738 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 424 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 775 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 779 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 785 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 13 -[347] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 17:28:27.685359 - -[343] Log opened at 2024-10-17 17:28:40.968930 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 422 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 424 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 775 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 779 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 785 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 14 -[343] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 17:28:44.647750 - -[345] Log opened at 2024-10-17 17:29:23.552155 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[345] [Step Debug] -> - -[345] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 775 -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 779 -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 785 -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1643 -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[345] [Step Debug] -> - -[345] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[345] [Step Debug] -> - -[345] [Step Debug] <- run -i 13 -[345] [Step Debug] -> - -[345] [Step Debug] -> - -[345] [Step Debug] -> - -[345] [Step Debug] -> - -[345] [Step Debug] -> - -[345] Log closed at 2024-10-17 17:29:27.069489 - -[327] Log opened at 2024-10-17 17:29:51.058111 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 618 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 775 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 779 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 785 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 13 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 14 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 15 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 17 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 18 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 19 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 21 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 22 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 23 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 25 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 26 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 27 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 28 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 29 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 30 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 31 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 33 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 35 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 36 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 37 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 38 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 39 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 40 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 41 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 42 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 43 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 44 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 45 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 46 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 47 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 48 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 49 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 50 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 51 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 52 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 53 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 54 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 55 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 56 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 57 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 58 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 59 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 60 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 61 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 62 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 63 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 64 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 65 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 66 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 67 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 68 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- step_over -i 69 -[327] [Step Debug] -> - -[327] [Step Debug] <- stack_get -i 70 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_names -i 71 -d 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- context_get -i 72 -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- property_get -i 73 -n "$resultado_presupuesto" -d 0 -c 0 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 74 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 17:30:27.031669 - -[349] Log opened at 2024-10-17 17:31:08.272307 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 618 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 777 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 781 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 787 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 13 -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] <- stack_get -i 14 -[349] [Step Debug] -> - -[349] [Step Debug] <- context_names -i 15 -d 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_remove -i 17 -d 3490010 -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 18 -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 17:31:23.066995 - -[341] Log opened at 2024-10-17 17:31:52.540684 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php -n 88 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 777 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 781 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 787 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 13 -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- stack_get -i 14 -[341] [Step Debug] -> - -[341] [Step Debug] <- context_names -i 15 -d 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- property_get -i 17 -n "$tarifa_acabado_id" -d 0 -c 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- context_names -i 18 -d 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- context_names -i 20 -d 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[341] [Step Debug] -> - -[341] [Step Debug] <- context_names -i 23 -d 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_remove -i 25 -d 3410036 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoAcabadosModel.php -n 89 -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_remove -i 27 -d 3410043 -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 28 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 17:33:05.229047 - -[348] Log opened at 2024-10-17 17:34:11.791842 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 777 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 781 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 787 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 12 -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 13 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 15 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_remove -i 17 -d 3480005 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_remove -i 18 -d 3480006 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_remove -i 19 -d 3480007 -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 20 -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 17:34:23.659733 - -<<<<<<< HEAD -[7640] Log opened at 2024-10-17 21:51:03.869662 -[7640] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.7640' -[7640] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[7640] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[7640] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[7640] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[7640] Log closed at 2024-10-17 21:51:04.556593 - -[9851] Log opened at 2024-10-17 21:54:30.472221 -[9851] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.9851' -[9851] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[9851] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[10190] Log opened at 2024-10-17 21:54:55.986235 -[10190] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.10190' -[10190] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[10190] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[10190] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[10190] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[10190] Log closed at 2024-10-17 21:55:14.675874 - -[22] Log opened at 2024-10-18 10:35:43.553763 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log opened at 2024-10-18 10:35:43.762973 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] Log opened at 2024-10-18 10:35:43.939294 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-18 10:35:44.610095 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:35:44.774349 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:35:45.274337 - -[27] Log opened at 2024-10-18 10:35:48.187732 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:35:49.207024 - -[27] Log opened at 2024-10-18 10:35:49.250936 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:35:49.880859 - -[23] Log opened at 2024-10-18 10:35:49.962055 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 10:35:49.963961 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:35:50.746150 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:35:51.493974 - -[24] Log opened at 2024-10-18 10:36:50.485536 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:36:51.498895 - -[30] Log opened at 2024-10-18 10:36:51.517464 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:36:52.149387 - -[28] Log opened at 2024-10-18 10:36:52.193969 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] Log opened at 2024-10-18 10:36:52.202770 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:36:52.972597 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:36:53.700470 - -[30] Log opened at 2024-10-18 10:36:56.015025 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:36:57.066532 - -[30] Log opened at 2024-10-18 10:36:57.083920 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:36:57.714227 - -[30] Log opened at 2024-10-18 10:36:57.778789 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 10:36:57.784846 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:36:57.819116 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:36:58.550859 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:36:59.319375 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:36:59.726259 - -[27] Log opened at 2024-10-18 10:37:07.930595 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:37:08.802164 - -[24] Log opened at 2024-10-18 10:39:15.290621 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:39:16.170295 - -[24] Log opened at 2024-10-18 10:39:16.187335 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:39:17.059112 - -[24] Log opened at 2024-10-18 10:39:17.151347 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:39:18.027669 - -[22] Log opened at 2024-10-18 10:39:49.724259 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-18 10:39:50.602172 - -[25] Log opened at 2024-10-18 10:39:56.932277 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:39:57.811755 - -[30] Log opened at 2024-10-18 10:40:52.482002 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:40:53.359311 - -[29] Log opened at 2024-10-18 10:41:56.504559 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:41:57.382412 - -[29] Log opened at 2024-10-18 10:42:02.334837 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:42:03.214309 - -[23] Log opened at 2024-10-18 10:42:18.710642 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:42:19.585860 - -[26] Log opened at 2024-10-18 10:42:27.064835 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:42:28.159842 - -[27] Log opened at 2024-10-18 10:42:45.254746 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:42:46.368150 - -[28] Log opened at 2024-10-18 10:43:29.387132 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:43:30.435067 - -[28] Log opened at 2024-10-18 10:43:30.462776 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:43:31.095966 - -[24] Log opened at 2024-10-18 10:43:31.173744 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] Log opened at 2024-10-18 10:43:31.175480 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] Log opened at 2024-10-18 10:43:31.257379 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-18 10:43:31.946083 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:43:32.572342 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:43:32.984108 - -[22] Log opened at 2024-10-18 10:43:34.104753 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-18 10:43:34.981994 - -[30] Log opened at 2024-10-18 10:44:51.719073 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:44:52.596532 - -[30] Log opened at 2024-10-18 10:44:53.421817 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:44:54.298387 - -[29] Log opened at 2024-10-18 10:45:38.036268 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:45:38.912565 - -[23] Log opened at 2024-10-18 10:45:48.753241 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:45:49.627385 - -[23] Log opened at 2024-10-18 10:45:50.799822 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:45:51.673404 - -[26] Log opened at 2024-10-18 10:47:27.503054 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:47:28.380136 - -[26] Log opened at 2024-10-18 10:47:28.415852 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:47:29.292553 - -[27] Log opened at 2024-10-18 10:47:34.336615 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:47:35.216471 - -[28] Log opened at 2024-10-18 10:47:44.777998 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:47:45.819791 - -[28] Log opened at 2024-10-18 10:47:45.849031 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:47:46.482733 - -[25] Log opened at 2024-10-18 10:47:46.552538 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] Log opened at 2024-10-18 10:47:46.558584 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 10:47:46.642816 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-18 10:47:47.334272 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:47:47.954016 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:47:48.361488 - -[22] Log opened at 2024-10-18 10:47:49.369247 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-18 10:47:50.241639 - -[30] Log opened at 2024-10-18 10:49:00.033446 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:49:00.906176 - -[30] Log opened at 2024-10-18 10:49:01.995655 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:49:02.871617 - -[30] Log opened at 2024-10-18 10:49:03.597006 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:49:04.473299 - -[29] Log opened at 2024-10-18 10:49:12.851360 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:49:13.899530 - -[29] Log opened at 2024-10-18 10:49:13.924693 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:49:14.554849 - -[23] Log opened at 2024-10-18 10:49:14.623179 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 10:49:14.629884 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:49:14.711806 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:49:15.398117 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:49:16.005401 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:49:16.410601 - -[29] Log opened at 2024-10-18 10:49:18.200197 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:49:19.079884 - -[27] Log opened at 2024-10-18 10:49:32.243401 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:49:33.285912 - -[27] Log opened at 2024-10-18 10:49:33.313665 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:49:33.943984 - -[24] Log opened at 2024-10-18 10:49:34.017091 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 10:49:34.019627 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] Log opened at 2024-10-18 10:49:34.070855 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:49:34.783929 - -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:49:34.942981 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:49:35.379651 - -[28] Log opened at 2024-10-18 10:49:41.781369 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:49:42.801294 - -[28] Log opened at 2024-10-18 10:49:42.828085 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:49:43.456615 - -[22] Log opened at 2024-10-18 10:49:43.525238 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 10:49:43.529419 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] Log opened at 2024-10-18 10:49:43.583179 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:49:44.298989 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 10:49:44.456747 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-18 10:49:44.914864 - -[26] Log opened at 2024-10-18 10:50:12.867239 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:50:13.899481 - -[26] Log opened at 2024-10-18 10:50:13.927590 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:50:14.556163 - -[29] Log opened at 2024-10-18 10:50:14.654584 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 10:50:14.655957 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 10:50:14.725021 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:50:15.421944 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:50:16.028453 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:50:16.433857 - -[29] Log opened at 2024-10-18 10:50:17.648602 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:50:18.525045 - -[23] Log opened at 2024-10-18 10:51:15.759403 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:51:16.638047 - -[23] Log opened at 2024-10-18 10:51:16.675853 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] Log opened at 2024-10-18 10:51:17.537930 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:51:17.556917 - -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 10:51:18.416857 - -[80] Log opened at 2024-10-18 10:51:18.448106 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 10:51:19.323177 - -[81] Log opened at 2024-10-18 10:51:48.105341 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 10:51:48.986269 - -[81] Log opened at 2024-10-18 10:51:50.198898 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 10:51:51.069607 - -[81] Log opened at 2024-10-18 10:51:53.799109 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 10:51:54.671554 - -[81] Log opened at 2024-10-18 10:51:55.507363 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 10:51:56.386255 - -[82] Log opened at 2024-10-18 10:52:06.271772 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 10:52:07.144281 - -[26] Log opened at 2024-10-18 10:52:26.498570 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:52:27.376943 - -[28] Log opened at 2024-10-18 10:52:40.633147 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:52:41.678160 - -[28] Log opened at 2024-10-18 10:52:41.713057 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:52:42.343512 - -[25] Log opened at 2024-10-18 10:52:42.411734 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 10:52:42.421205 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 10:52:42.490721 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:52:43.184828 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:52:43.818466 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:52:44.224092 - -[24] Log opened at 2024-10-18 10:54:56.824527 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:54:57.701869 - -[24] Log opened at 2024-10-18 10:55:00.576175 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:55:01.615135 - -[29] Log opened at 2024-10-18 10:55:01.644022 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:55:02.273073 - -[29] Log opened at 2024-10-18 10:55:02.345818 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 10:55:02.355837 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-18 10:55:02.396325 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:55:03.127202 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 10:55:03.726700 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 10:55:04.130754 - -[24] Log opened at 2024-10-18 10:55:05.625444 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:55:06.744824 - -[80] Log opened at 2024-10-18 10:55:24.663541 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 10:55:25.805644 - -[81] Log opened at 2024-10-18 10:55:43.965400 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 10:55:45.104395 - -[82] Log opened at 2024-10-18 10:55:55.412356 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 10:55:56.486594 - -[82] Log opened at 2024-10-18 10:55:56.513142 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:55:56.519941 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 10:55:57.142005 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 10:55:57.217810 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:55:57.396371 - -[26] Log opened at 2024-10-18 10:55:57.412016 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 10:55:58.450865 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:55:58.796228 - -[25] Log opened at 2024-10-18 10:57:01.861794 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:57:02.914432 - -[25] Log opened at 2024-10-18 10:57:02.938502 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 10:57:03.568314 - -[24] Log opened at 2024-10-18 10:57:03.638140 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 10:57:03.640576 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:57:04.411606 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 10:57:05.065955 - -[29] Log opened at 2024-10-18 11:08:16.854490 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:08:17.896734 - -[29] Log opened at 2024-10-18 11:08:17.919489 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:08:18.549523 - -[23] Log opened at 2024-10-18 11:08:18.621759 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] Log opened at 2024-10-18 11:08:18.630827 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:08:19.399361 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:08:20.017557 - -[81] Log opened at 2024-10-18 11:10:10.216684 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:10:11.270437 - -[81] Log opened at 2024-10-18 11:10:11.292983 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:10:11.922528 - -[82] Log opened at 2024-10-18 11:10:11.994895 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 11:10:11.998365 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:10:12.768291 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:10:13.392290 - -[27] Log opened at 2024-10-18 11:11:09.936771 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:11:11.009853 - -[27] Log opened at 2024-10-18 11:11:11.031807 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:11:11.663493 - -[26] Log opened at 2024-10-18 11:11:11.731599 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 11:11:11.739649 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:11:12.504903 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:11:13.118174 - -[28] Log opened at 2024-10-18 11:11:18.208368 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:11:19.247156 - -[28] Log opened at 2024-10-18 11:11:19.266888 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:11:19.895937 - -[24] Log opened at 2024-10-18 11:11:19.965946 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 11:11:19.967673 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:11:20.741935 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:11:21.371812 - -[29] Log opened at 2024-10-18 11:11:33.873341 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:11:34.914353 - -[29] Log opened at 2024-10-18 11:11:34.937640 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:11:35.567860 - -[80] Log opened at 2024-10-18 11:11:35.638149 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:11:35.642761 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:11:36.411513 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:11:37.017090 - -[81] Log opened at 2024-10-18 11:11:44.701566 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:11:45.768322 - -[81] Log opened at 2024-10-18 11:11:45.785622 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:11:46.416400 - -[82] Log opened at 2024-10-18 11:11:46.482785 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 11:11:46.492896 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:11:47.274840 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:11:47.904432 - -[25] Log opened at 2024-10-18 11:12:08.560680 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:12:09.619935 - -[25] Log opened at 2024-10-18 11:12:09.637209 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:12:10.266610 - -[26] Log opened at 2024-10-18 11:12:10.334161 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] Log opened at 2024-10-18 11:12:10.336621 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:12:11.115744 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:12:11.739454 - -[28] Log opened at 2024-10-18 11:12:33.541426 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:12:34.610717 - -[28] Log opened at 2024-10-18 11:12:34.633435 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:12:35.264000 - -[24] Log opened at 2024-10-18 11:12:35.329934 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 11:12:35.339115 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:12:36.112016 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:12:36.747039 - -[29] Log opened at 2024-10-18 11:12:49.609350 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:12:50.655218 - -[29] Log opened at 2024-10-18 11:12:50.677415 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:12:51.308345 - -[80] Log opened at 2024-10-18 11:12:51.378311 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:12:51.380406 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:12:52.153552 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:12:52.758620 - -[23] Log opened at 2024-10-18 11:12:58.381517 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:12:59.447166 - -[23] Log opened at 2024-10-18 11:12:59.465613 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:13:00.096014 - -[27] Log opened at 2024-10-18 11:13:00.162806 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-18 11:13:00.172454 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:13:00.942395 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:13:01.543938 - -[82] Log opened at 2024-10-18 11:14:30.914356 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:14:32.049980 - -[25] Log opened at 2024-10-18 11:14:32.088756 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:14:32.966919 - -[26] Log opened at 2024-10-18 11:14:41.667925 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:14:42.822589 - -[28] Log opened at 2024-10-18 11:15:52.237177 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:15:53.366639 - -[24] Log opened at 2024-10-18 11:16:03.921756 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:16:05.064810 - -[29] Log opened at 2024-10-18 11:16:17.178161 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:16:18.328687 - -[80] Log opened at 2024-10-18 11:16:52.975945 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:16:54.127528 - -[23] Log opened at 2024-10-18 11:16:55.320310 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:16:56.451017 - -[81] Log opened at 2024-10-18 11:17:38.406753 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:17:39.431759 - -[81] Log opened at 2024-10-18 11:17:39.452043 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:17:40.081567 - -[27] Log opened at 2024-10-18 11:17:40.173863 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 11:17:40.174650 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:17:40.945847 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:17:41.573468 - -[26] Log opened at 2024-10-18 11:18:12.050366 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:18:13.084849 - -[26] Log opened at 2024-10-18 11:18:13.106365 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:18:13.739147 - -[28] Log opened at 2024-10-18 11:18:13.806259 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 11:18:13.811432 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:18:14.581681 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:18:15.179178 - -[28] Log opened at 2024-10-18 11:18:20.011898 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:18:21.056167 - -[28] Log opened at 2024-10-18 11:18:21.076248 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:18:21.710461 - -[28] Log opened at 2024-10-18 11:18:21.784070 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 11:18:21.785615 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:18:22.553721 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:18:23.191392 - -[29] Log opened at 2024-10-18 11:19:02.110040 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:19:03.132704 - -[80] Log opened at 2024-10-18 11:19:03.155507 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:19:03.788589 - -[80] Log opened at 2024-10-18 11:19:03.861682 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:19:03.865765 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:19:04.638885 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:19:05.284520 - -[23] Log opened at 2024-10-18 11:19:11.337274 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:19:12.373705 - -[23] Log opened at 2024-10-18 11:19:12.395305 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:19:13.025080 - -[81] Log opened at 2024-10-18 11:19:13.092980 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-18 11:19:13.096912 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:19:13.862989 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:19:14.493937 - -[82] Log opened at 2024-10-18 11:19:47.320429 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:19:48.342646 - -[82] Log opened at 2024-10-18 11:19:48.370576 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:19:49.002068 - -[27] Log opened at 2024-10-18 11:19:49.073449 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 11:19:49.075517 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:19:49.843406 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:19:50.456253 - -[25] Log opened at 2024-10-18 11:29:33.873382 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:29:34.926102 - -[26] Log opened at 2024-10-18 11:29:34.959745 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:29:35.590193 - -[24] Log opened at 2024-10-18 11:29:35.665803 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 11:29:35.668294 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:29:36.445502 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:29:37.071436 - -[26] Log opened at 2024-10-18 11:29:40.040342 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:29:41.062166 - -[26] Log opened at 2024-10-18 11:29:41.084674 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:29:41.717958 - -[26] Log opened at 2024-10-18 11:29:41.795595 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 11:29:41.797451 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:29:42.569261 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:29:43.193295 - -[24] Log opened at 2024-10-18 11:29:44.382613 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:29:45.431637 - -[24] Log opened at 2024-10-18 11:29:45.457414 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:29:46.087112 - -[24] Log opened at 2024-10-18 11:29:46.157440 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 11:29:46.162411 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:29:46.215957 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:29:46.937305 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:29:47.538921 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:29:47.939655 - -[23] Log opened at 2024-10-18 11:30:35.997311 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:30:37.041154 - -[81] Log opened at 2024-10-18 11:30:37.067296 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:30:37.699992 - -[81] Log opened at 2024-10-18 11:30:37.780156 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] Log opened at 2024-10-18 11:30:37.782864 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-18 11:30:38.553234 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:30:39.179973 - -[27] Log opened at 2024-10-18 11:31:08.078866 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:31:09.119115 - -[27] Log opened at 2024-10-18 11:31:09.142927 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:31:09.776625 - -[25] Log opened at 2024-10-18 11:31:09.857211 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 11:31:09.859765 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 11:31:10.628345 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:31:11.256757 - -[26] Log opened at 2024-10-18 11:32:18.885708 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:32:19.919397 - -[26] Log opened at 2024-10-18 11:32:19.941821 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:32:20.571168 - -[24] Log opened at 2024-10-18 11:32:20.645819 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 11:32:20.648070 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:32:21.417514 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:32:22.038463 - -[29] Log opened at 2024-10-18 11:32:29.920768 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:32:30.960473 - -[80] Log opened at 2024-10-18 11:32:30.978442 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:32:31.608904 - -[80] Log opened at 2024-10-18 11:32:31.680919 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:32:31.685600 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:32:32.453791 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:32:33.084577 - -[25] Log opened at 2024-10-18 11:33:11.415822 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:33:12.457193 - -[25] Log opened at 2024-10-18 11:33:12.481245 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:33:13.109432 - -[81] Log opened at 2024-10-18 11:33:13.183795 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 11:33:13.185814 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:33:13.958007 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:33:14.572101 - -[28] Log opened at 2024-10-18 11:33:16.037517 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:33:17.063344 - -[28] Log opened at 2024-10-18 11:33:17.088290 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:33:17.719858 - -[28] Log opened at 2024-10-18 11:33:17.793185 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 11:33:17.797418 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] Log opened at 2024-10-18 11:33:17.846401 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:33:18.564651 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:33:19.184561 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:33:19.593142 - -[24] Log opened at 2024-10-18 11:33:24.614203 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:33:25.664863 - -[24] Log opened at 2024-10-18 11:33:25.688180 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:33:26.318970 - -[26] Log opened at 2024-10-18 11:33:26.392553 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 11:33:26.395314 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:33:27.056052 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:33:27.160932 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:33:27.763157 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:33:28.164309 - -[29] Log opened at 2024-10-18 11:33:28.267782 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] Log opened at 2024-10-18 11:33:28.269563 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:33:28.305226 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:33:29.045936 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:33:29.660456 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:33:30.064398 - -[86] Log opened at 2024-10-18 11:35:33.740586 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:35:34.781749 - -[86] Log opened at 2024-10-18 11:35:34.805444 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:35:35.436701 - -[82] Log opened at 2024-10-18 11:35:35.510053 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 11:35:35.512382 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:35:36.292307 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:35:36.897255 - -[28] Log opened at 2024-10-18 11:35:54.059717 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:35:55.075302 - -[28] Log opened at 2024-10-18 11:35:55.093636 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:35:55.725540 - -[25] Log opened at 2024-10-18 11:35:55.793753 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 11:35:55.798485 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:35:56.563784 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-18 11:35:57.181787 - -[26] Log opened at 2024-10-18 11:36:47.948744 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:36:48.974665 - -[26] Log opened at 2024-10-18 11:36:48.995002 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 11:36:49.628037 - -[80] Log opened at 2024-10-18 11:36:49.701993 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:36:49.708403 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:36:50.478662 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:36:51.080285 - -[87] Log opened at 2024-10-18 11:36:52.577054 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:36:53.594671 - -[87] Log opened at 2024-10-18 11:36:53.613817 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:36:54.246074 - -[82] Log opened at 2024-10-18 11:36:54.316148 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 11:36:54.325395 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 11:36:54.416415 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:36:55.092098 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:36:55.711951 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:36:56.125623 - -[29] Log opened at 2024-10-18 11:37:28.164463 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:37:29.189075 - -[29] Log opened at 2024-10-18 11:37:29.212281 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:37:29.848326 - -[80] Log opened at 2024-10-18 11:37:29.925777 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:37:29.927771 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 11:37:29.972874 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:37:30.695161 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:37:31.298188 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:37:31.698159 - -[87] Log opened at 2024-10-18 11:37:32.654042 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:37:33.687647 - -[87] Log opened at 2024-10-18 11:37:33.708137 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:37:34.342151 - -[86] Log opened at 2024-10-18 11:37:34.409457 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 11:37:34.416873 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 11:37:34.491220 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:37:35.184305 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:37:35.802545 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:37:36.206890 - -[94] Log opened at 2024-10-18 11:37:53.243037 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:37:54.260354 - -[94] Log opened at 2024-10-18 11:37:54.283964 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:37:54.918323 - -[80] Log opened at 2024-10-18 11:37:54.993722 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 11:37:54.995987 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:37:55.056976 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:37:55.764687 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:37:56.382575 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:37:56.782336 - -[95] Log opened at 2024-10-18 11:37:58.245602 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 11:37:59.269549 - -[95] Log opened at 2024-10-18 11:37:59.301368 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 11:37:59.936306 - -[81] Log opened at 2024-10-18 11:38:00.008215 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:38:00.016311 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 11:38:00.109793 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:38:00.790545 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:38:01.404520 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:38:01.807491 - -[81] Log opened at 2024-10-18 11:38:04.132923 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:38:05.165987 - -[81] Log opened at 2024-10-18 11:38:05.189559 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:38:05.821481 - -[81] Log opened at 2024-10-18 11:38:05.891079 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 11:38:05.894263 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 11:38:05.975567 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:38:06.661103 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:38:07.258400 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:38:07.661760 - -[80] Log opened at 2024-10-18 11:38:12.714213 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:38:13.756003 - -[80] Log opened at 2024-10-18 11:38:13.781062 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:38:14.414519 - -[94] Log opened at 2024-10-18 11:38:14.489053 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:38:14.491805 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] Log opened at 2024-10-18 11:38:14.579161 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:38:15.259889 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:38:15.860960 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:38:16.272279 - -[95] Log opened at 2024-10-18 11:38:22.724621 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 11:38:23.766880 - -[24] Log opened at 2024-10-18 11:38:23.792006 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:38:24.426425 - -[24] Log opened at 2024-10-18 11:38:24.502806 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 11:38:24.507606 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 11:38:25.278931 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 11:38:25.922099 - -[86] Log opened at 2024-10-18 11:58:35.648643 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:58:36.686081 - -[86] Log opened at 2024-10-18 11:58:36.717799 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:58:37.351946 - -[87] Log opened at 2024-10-18 11:58:37.426767 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 11:58:37.429150 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 11:58:38.197212 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:58:38.823685 - -[81] Log opened at 2024-10-18 11:58:50.196051 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:58:51.236181 - -[81] Log opened at 2024-10-18 11:58:51.255829 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:58:51.887219 - -[82] Log opened at 2024-10-18 11:58:51.961964 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 11:58:51.965347 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:58:52.735022 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:58:53.364587 - -[82] Log opened at 2024-10-18 11:58:58.106916 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:58:59.133087 - -[82] Log opened at 2024-10-18 11:58:59.150795 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:58:59.780106 - -[82] Log opened at 2024-10-18 11:58:59.853985 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 11:58:59.855718 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 11:59:00.626692 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:59:01.262365 - -[94] Log opened at 2024-10-18 11:59:10.713277 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:59:11.748031 - -[94] Log opened at 2024-10-18 11:59:11.768012 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:59:12.398587 - -[80] Log opened at 2024-10-18 11:59:12.467934 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 11:59:12.472482 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:59:13.244658 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:59:13.874396 - -[95] Log opened at 2024-10-18 12:00:47.884553 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:00:48.906558 - -[95] Log opened at 2024-10-18 12:00:48.937382 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:00:49.569916 - -[24] Log opened at 2024-10-18 12:00:49.648899 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:00:49.651751 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:00:50.429169 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:00:51.039116 - -[81] Log opened at 2024-10-18 12:01:01.508141 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:01:02.528986 - -[81] Log opened at 2024-10-18 12:01:02.548211 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:01:03.182702 - -[29] Log opened at 2024-10-18 12:01:03.259066 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 12:01:03.262730 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:01:04.028250 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:01:04.705365 - -[82] Log opened at 2024-10-18 12:05:47.210107 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:05:48.224096 - -[82] Log opened at 2024-10-18 12:05:48.256096 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:05:48.888530 - -[86] Log opened at 2024-10-18 12:05:48.962330 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 12:05:48.964543 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:05:49.737883 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:05:50.365438 - -[28] Log opened at 2024-10-18 12:06:41.049653 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:06:42.095041 - -[95] Log opened at 2024-10-18 12:06:42.121779 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:06:42.755630 - -[95] Log opened at 2024-10-18 12:06:42.831662 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 12:06:42.834156 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:06:43.607080 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:06:44.217457 - -[24] Log opened at 2024-10-18 12:07:05.750494 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:07:06.791313 - -[24] Log opened at 2024-10-18 12:07:06.812782 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:07:07.444301 - -[81] Log opened at 2024-10-18 12:07:07.519931 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 12:07:07.521775 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:07:08.294748 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:07:08.889986 - -[94] Log opened at 2024-10-18 12:07:33.180084 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:07:34.208889 - -[94] Log opened at 2024-10-18 12:07:34.233186 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:07:34.869150 - -[80] Log opened at 2024-10-18 12:07:34.944813 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:07:34.947157 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:07:35.717015 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:07:36.337572 - -[87] Log opened at 2024-10-18 12:08:00.342752 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:08:01.363128 - -[87] Log opened at 2024-10-18 12:08:01.385666 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:08:02.020305 - -[82] Log opened at 2024-10-18 12:08:02.094263 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:08:02.098055 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:08:02.861105 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:08:03.502143 - -[28] Log opened at 2024-10-18 12:08:13.801718 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:08:14.831116 - -[28] Log opened at 2024-10-18 12:08:14.851923 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:08:15.487370 - -[95] Log opened at 2024-10-18 12:08:15.562743 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 12:08:15.564432 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:08:16.333089 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:08:16.958545 - -[29] Log opened at 2024-10-18 12:08:35.225579 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:08:36.256085 - -[29] Log opened at 2024-10-18 12:08:36.280166 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:08:36.911786 - -[81] Log opened at 2024-10-18 12:08:36.992274 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 12:08:36.994579 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:08:37.767562 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:08:38.382224 - -[94] Log opened at 2024-10-18 12:09:31.781855 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:09:32.810485 - -[94] Log opened at 2024-10-18 12:09:32.835041 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:09:33.467800 - -[80] Log opened at 2024-10-18 12:09:33.547177 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:09:33.548645 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:09:34.318342 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:09:34.937861 - -[86] Log opened at 2024-10-18 12:09:52.498635 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:09:53.520823 - -[86] Log opened at 2024-10-18 12:09:53.541583 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:09:54.177265 - -[82] Log opened at 2024-10-18 12:09:54.252950 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:09:54.253604 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:09:55.020911 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:09:55.630765 - -[28] Log opened at 2024-10-18 12:10:13.259780 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:10:14.294178 - -[28] Log opened at 2024-10-18 12:10:14.314141 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:10:14.947857 - -[24] Log opened at 2024-10-18 12:10:15.020794 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 12:10:15.025369 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:10:15.790026 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:10:16.416313 - -[95] Log opened at 2024-10-18 12:11:07.230388 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:11:08.275753 - -[95] Log opened at 2024-10-18 12:11:08.306493 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:11:08.937330 - -[94] Log opened at 2024-10-18 12:11:09.014206 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:11:09.016331 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:11:09.786006 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:11:10.431166 - -[87] Log opened at 2024-10-18 12:11:47.149898 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:11:48.174883 - -[87] Log opened at 2024-10-18 12:11:48.200428 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:11:48.831811 - -[80] Log opened at 2024-10-18 12:11:48.910132 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:11:48.912274 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:11:49.685506 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:11:50.291698 - -[86] Log opened at 2024-10-18 12:11:58.547363 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:11:59.582641 - -[86] Log opened at 2024-10-18 12:11:59.605159 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:12:00.237262 - -[82] Log opened at 2024-10-18 12:12:00.309980 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:12:00.312715 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:12:01.078573 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:12:01.678192 - -[28] Log opened at 2024-10-18 12:12:21.528058 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:12:22.544722 - -[28] Log opened at 2024-10-18 12:12:22.567159 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:12:23.202586 - -[24] Log opened at 2024-10-18 12:12:23.276002 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 12:12:23.278428 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:12:24.045159 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:12:24.661947 - -[29] Log opened at 2024-10-18 12:15:05.861006 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:15:06.906895 - -[29] Log opened at 2024-10-18 12:15:06.930113 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:15:07.562633 - -[81] Log opened at 2024-10-18 12:15:07.641055 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:15:07.644648 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:15:08.412330 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:15:09.014587 - -[87] Log opened at 2024-10-18 12:15:20.866295 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:15:21.883040 - -[87] Log opened at 2024-10-18 12:15:21.901868 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:15:22.531290 - -[80] Log opened at 2024-10-18 12:15:22.601147 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:15:22.604440 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:15:23.374422 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:15:24.021677 - -[82] Log opened at 2024-10-18 12:16:25.652407 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:16:26.698556 - -[82] Log opened at 2024-10-18 12:16:26.720037 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:16:27.352231 - -[28] Log opened at 2024-10-18 12:16:27.425552 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 12:16:27.430941 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:16:28.198781 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:16:28.838661 - -[95] Log opened at 2024-10-18 12:17:10.681806 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:17:11.693821 - -[81] Log opened at 2024-10-18 12:17:11.721213 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:17:12.350260 - -[81] Log opened at 2024-10-18 12:17:12.471260 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:17:12.482496 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:17:13.245069 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:17:13.885694 - -[86] Log opened at 2024-10-18 12:17:38.514561 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:17:39.561622 - -[86] Log opened at 2024-10-18 12:17:39.581178 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:17:40.213951 - -[94] Log opened at 2024-10-18 12:17:40.288480 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:17:40.291310 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:17:41.058752 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:17:41.677851 - -[82] Log opened at 2024-10-18 12:19:13.988204 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:19:15.005099 - -[82] Log opened at 2024-10-18 12:19:15.032982 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:19:15.665975 - -[28] Log opened at 2024-10-18 12:19:15.740140 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 12:19:15.743509 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:19:16.515852 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:19:17.132999 - -[87] Log opened at 2024-10-18 12:19:32.580915 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:19:33.619778 - -[87] Log opened at 2024-10-18 12:19:33.640232 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:19:34.270802 - -[80] Log opened at 2024-10-18 12:19:34.343800 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:19:34.347148 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:19:35.118713 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:19:35.743343 - -[95] Log opened at 2024-10-18 12:20:08.680535 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:20:09.712106 - -[95] Log opened at 2024-10-18 12:20:09.738910 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:20:10.371963 - -[81] Log opened at 2024-10-18 12:20:10.449477 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:20:10.451367 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:20:11.218102 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:20:11.858446 - -[94] Log opened at 2024-10-18 12:21:19.699896 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:21:20.706174 - -[94] Log opened at 2024-10-18 12:21:20.729485 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:21:21.358361 - -[29] Log opened at 2024-10-18 12:21:21.430834 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:21:21.434530 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:21:22.208188 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:21:22.821629 - -[24] Log opened at 2024-10-18 12:21:38.182642 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:21:39.211149 - -[24] Log opened at 2024-10-18 12:21:39.233818 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:21:39.869119 - -[82] Log opened at 2024-10-18 12:21:39.946273 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 12:21:39.947935 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:21:40.717399 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:21:41.326211 - -[24] Log opened at 2024-10-18 12:21:44.184135 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:21:45.223457 - -[82] Log opened at 2024-10-18 12:21:45.246572 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:21:45.876364 - -[82] Log opened at 2024-10-18 12:21:45.949761 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 12:21:45.952228 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:21:46.719344 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:21:47.339785 - -[28] Log opened at 2024-10-18 12:22:34.209152 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:22:35.222158 - -[28] Log opened at 2024-10-18 12:22:35.251774 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:22:35.882534 - -[95] Log opened at 2024-10-18 12:22:35.957987 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 12:22:35.960029 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:22:36.728242 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:22:37.346354 - -[86] Log opened at 2024-10-18 12:22:49.424379 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:22:50.446285 - -[86] Log opened at 2024-10-18 12:22:50.469297 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:22:51.100480 - -[81] Log opened at 2024-10-18 12:22:51.173613 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:22:51.174691 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:22:51.952705 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:22:52.573766 - -[86] Log opened at 2024-10-18 12:22:55.465654 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:22:56.504210 - -[81] Log opened at 2024-10-18 12:22:56.524717 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:22:57.154542 - -[81] Log opened at 2024-10-18 12:22:57.225438 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:22:57.227079 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:22:58.001389 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:22:58.614366 - -[94] Log opened at 2024-10-18 12:23:05.038502 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:23:06.064638 - -[94] Log opened at 2024-10-18 12:23:06.084332 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:23:06.714675 - -[29] Log opened at 2024-10-18 12:23:06.786448 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:23:06.790016 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:23:07.559554 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:23:08.191268 - -[24] Log opened at 2024-10-18 12:23:16.996704 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:23:18.024130 - -[24] Log opened at 2024-10-18 12:23:18.043969 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:23:18.677390 - -[82] Log opened at 2024-10-18 12:23:18.746545 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 12:23:18.749819 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:23:19.521191 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:23:20.137202 - -[87] Log opened at 2024-10-18 12:26:26.508848 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:26:27.522366 - -[87] Log opened at 2024-10-18 12:26:27.552083 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:26:28.184789 - -[80] Log opened at 2024-10-18 12:26:28.260588 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:26:28.262969 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:26:29.030074 - -======= -[349] Log opened at 2024-10-17 18:13:21.893502 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 9 -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:13:22.114974 - -[341] Log opened at 2024-10-17 18:13:22.514540 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 9 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:13:22.696257 - -[348] Log opened at 2024-10-17 18:13:53.650168 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 9 -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 10 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 11 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 12 -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 13 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 14 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 15 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- stop -i 16 -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:14:12.831203 - -[320] Log opened at 2024-10-17 18:14:13.059105 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 18:14:14.116928 - -[344] Log opened at 2024-10-17 18:14:17.653640 -[344] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.344' -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[344] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[344] Log closed at 2024-10-17 18:14:18.546720 - -[343] Log opened at 2024-10-17 18:14:18.680348 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 18:14:19.718893 - -[345] Log opened at 2024-10-17 18:14:27.270643 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 18:14:28.033527 - -[327] Log opened at 2024-10-17 18:14:28.218913 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:14:29.230062 - -[316] Log opened at 2024-10-17 18:15:39.913525 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:15:43.062500 - -[316] Log opened at 2024-10-17 18:15:43.398223 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] Log opened at 2024-10-17 18:15:43.498177 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:15:44.092163 - -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:15:44.928013 - -[341] Log opened at 2024-10-17 18:15:45.023391 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] Log opened at 2024-10-17 18:15:45.217477 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 18:15:45.219697 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:15:46.469221 - -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 18:15:47.233819 - -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:15:47.596688 - -[343] Log opened at 2024-10-17 18:16:05.517072 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 18:16:08.584446 - -[343] Log opened at 2024-10-17 18:16:08.835228 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 18:16:08.852888 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 18:16:09.518277 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:16:10.217503 - -[327] Log opened at 2024-10-17 18:16:10.277592 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] Log opened at 2024-10-17 18:16:10.420363 -[345] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.345' -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] Log opened at 2024-10-17 18:16:10.426132 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[345] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[345] Log closed at 2024-10-17 18:16:11.696707 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:16:12.488445 - -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] Log closed at 2024-10-17 18:16:12.912579 - -[347] Log opened at 2024-10-17 18:16:49.903836 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:16:53.149599 - -[347] Log opened at 2024-10-17 18:16:53.457984 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 18:16:53.583291 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:16:54.159426 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:16:55.005116 - -[349] Log opened at 2024-10-17 18:16:55.074494 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 18:16:55.240787 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 18:16:55.258872 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 18:16:56.470887 - -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:16:57.215445 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:16:57.581826 - -[316] Log opened at 2024-10-17 18:16:57.682708 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:16:58.874129 - -[350] Log opened at 2024-10-17 18:17:31.680018 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 10 -[350] [Step Debug] -> - -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:17:34.214822 - -[350] Log opened at 2024-10-17 18:17:34.461531 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[320] Log opened at 2024-10-17 18:17:34.471479 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[350] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[320] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[350] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[350] [Step Debug] <- run -i 10 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:17:34.650279 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:17:35.352000 - -[320] Log opened at 2024-10-17 18:17:35.430930 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[348] Log opened at 2024-10-17 18:17:35.621087 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[351] Log opened at 2024-10-17 18:17:35.631961 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[348] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[351] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[351] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[351] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[351] [Step Debug] <- run -i 10 -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:17:36.401852 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:17:36.753110 - -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:17:36.914590 - -[348] Log opened at 2024-10-17 18:17:37.025556 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 11 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 13 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- step_over -i 15 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 16 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 18 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- step_over -i 20 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 21 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 23 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- step_over -i 25 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 26 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 28 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 29 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- step_over -i 30 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 31 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 32 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 34 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 35 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- step_over -i 36 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 37 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 39 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- step_over -i 41 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 42 -[348] [Step Debug] -> - -[348] [Step Debug] <- stack_get -i 43 -[348] [Step Debug] -> - -[348] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[348] [Step Debug] -> - -[348] [Step Debug] <- context_names -i 45 -d 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- context_get -i 46 -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- property_get -i 47 -n "$this->model" -d 0 -c 0 -[348] [Step Debug] -> - -[348] [Step Debug] <- stop -i 48 -[348] [Step Debug] -> - -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:18:51.180038 - -[348] Log opened at 2024-10-17 18:18:53.745875 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:18:56.644831 - -[348] Log opened at 2024-10-17 18:18:56.838286 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] Log opened at 2024-10-17 18:18:56.863680 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:18:57.555598 - -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:18:58.169487 - -[348] Log opened at 2024-10-17 18:18:58.286522 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log opened at 2024-10-17 18:18:58.494717 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 18:18:58.494968 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:18:59.738074 - -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:19:00.484217 - -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:19:00.866046 - -[343] Log opened at 2024-10-17 18:19:10.210513 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 18:19:11.445873 - -[327] Log opened at 2024-10-17 18:19:40.564924 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:19:43.568949 - -[327] Log opened at 2024-10-17 18:19:43.771568 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 18:19:43.777561 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:19:44.438807 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:19:45.045776 - -[327] Log opened at 2024-10-17 18:19:45.205651 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log opened at 2024-10-17 18:19:45.433417 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[316] Log opened at 2024-10-17 18:19:45.433205 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:19:46.600751 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:19:47.323813 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 18:19:47.692648 - -[316] Log opened at 2024-10-17 18:19:47.797657 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:19:49.013761 - -[341] Log opened at 2024-10-17 18:28:22.537183 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 18:28:25.613167 - -[341] Log opened at 2024-10-17 18:28:25.828704 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] Log opened at 2024-10-17 18:28:25.841551 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 18:28:26.496859 - -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:28:27.073688 - -[349] Log opened at 2024-10-17 18:28:27.200617 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log opened at 2024-10-17 18:28:27.422107 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 18:28:27.422216 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:28:28.566919 - -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:28:29.293762 - -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 18:28:29.673025 - -[347] Log opened at 2024-10-17 18:28:29.769937 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:28:31.070026 - -[327] Log opened at 2024-10-17 18:28:45.863019 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 11 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:28:48.262042 - -[327] Log opened at 2024-10-17 18:28:48.421055 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[350] Log opened at 2024-10-17 18:28:48.441672 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[327] [Step Debug] -> - -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 9 -[327] [Step Debug] <- run -i 11 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:28:48.594263 - -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:28:49.241421 - -[327] Log opened at 2024-10-17 18:28:49.420029 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 11 -[350] Log opened at 2024-10-17 18:28:49.614191 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] Log opened at 2024-10-17 18:28:49.615587 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[351] [Step Debug] -> - -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[351] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[350] [Step Debug] -> - -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[351] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[350] [Step Debug] -> - -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[350] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[350] [Step Debug] -> - -[351] [Step Debug] <- run -i 11 -[350] [Step Debug] <- run -i 11 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:28:50.279960 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:28:50.663560 - -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:28:50.838401 - -[350] Log opened at 2024-10-17 18:28:50.939394 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 11 -[350] [Step Debug] -> - -[350] [Step Debug] -> - -[350] [Step Debug] -> - -[350] [Step Debug] <- stack_get -i 12 -[350] [Step Debug] -> - -[350] [Step Debug] <- eval -i 13 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[350] [Step Debug] -> - -[350] [Step Debug] <- context_names -i 14 -d 0 -[350] [Step Debug] -> - -[350] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_remove -i 16 -d 3500017 -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 17 -[350] [Step Debug] -> - -[350] [Step Debug] <- stack_get -i 18 -[350] [Step Debug] -> - -[350] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[350] [Step Debug] -> - -[350] [Step Debug] <- context_names -i 20 -d 0 -[350] [Step Debug] -> - -[350] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[350] [Step Debug] -> - -[350] [Step Debug] <- step_over -i 22 -[350] [Step Debug] -> - -[350] [Step Debug] <- stack_get -i 23 -[350] [Step Debug] -> - -[350] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[350] [Step Debug] -> - -[350] [Step Debug] <- context_names -i 25 -d 0 -[350] [Step Debug] -> - -[350] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 27 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:29:01.608200 - -[316] Log opened at 2024-10-17 18:29:05.322928 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:29:07.622096 - -[316] Log opened at 2024-10-17 18:29:07.841906 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[349] Log opened at 2024-10-17 18:29:07.851971 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[349] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[316] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[349] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[349] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:29:08.036308 - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:29:08.684218 - -[316] Log opened at 2024-10-17 18:29:08.794996 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[349] Log opened at 2024-10-17 18:29:09.002447 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 18:29:09.003542 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[349] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[349] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 10 -[349] [Step Debug] <- run -i 10 -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:29:09.638208 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:29:09.980693 - -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:29:10.153072 - -[349] Log opened at 2024-10-17 18:29:10.243948 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 10 -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] [Step Debug] <- stack_get -i 11 -[349] [Step Debug] -> - -[349] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[349] [Step Debug] -> - -[349] [Step Debug] <- context_names -i 13 -d 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- property_get -i 15 -n "$tiradas_alternativas" -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- property_get -i 16 -n "$tiradas_alternativas" -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- property_get -i 17 -n "$presupuesto" -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[349] [Step Debug] -> - -[349] [Step Debug] <- property_get -i 19 -n "$presupuesto->tiradas_alternativas_json_data" -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[349] [Step Debug] -> - -[349] [Step Debug] <- context_names -i 21 -d 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- property_get -i 22 -n "$presupuesto" -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- property_get -i 24 -n "$presupuesto->attributes" -p 0 -d 0 -c 0 -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 25 -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:30:01.646869 - -[327] Log opened at 2024-10-17 18:30:06.183166 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:30:08.522898 - -[327] Log opened at 2024-10-17 18:30:08.712058 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[320] Log opened at 2024-10-17 18:30:08.744162 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 6 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:30:08.879449 - -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:30:09.544856 - -[327] Log opened at 2024-10-17 18:30:09.698947 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 9 -[320] Log opened at 2024-10-17 18:30:09.957890 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] Log opened at 2024-10-17 18:30:09.958845 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 9 -[320] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:30:10.672659 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:30:11.037292 - -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:30:11.194447 - -[320] Log opened at 2024-10-17 18:30:11.301749 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 9 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:30:11.873574 - -[350] Log opened at 2024-10-17 18:30:33.271960 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 9 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:30:35.615211 - -[350] Log opened at 2024-10-17 18:30:35.769058 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[316] Log opened at 2024-10-17 18:30:35.787572 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[316] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[350] [Step Debug] <- run -i 9 -[316] [Step Debug] <- run -i 6 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:30:35.933825 - -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:30:36.620080 - -[350] Log opened at 2024-10-17 18:30:36.811853 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 9 -[316] Log opened at 2024-10-17 18:30:37.017611 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 18:30:37.017796 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[316] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[341] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[316] [Step Debug] -> - -[341] [Step Debug] <- run -i 9 -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:30:37.690917 - -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:30:38.033061 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:30:38.203094 - -[316] Log opened at 2024-10-17 18:30:38.309028 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 9 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:30:38.975163 - -[343] Log opened at 2024-10-17 18:30:52.192058 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 10 -[343] [Step Debug] -> - -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 18:30:54.710644 - -[343] Log opened at 2024-10-17 18:30:54.897457 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[347] Log opened at 2024-10-17 18:30:54.905833 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894 -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894 -[343] [Step Debug] -> - -[347] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[343] [Step Debug] -> - -[347] [Step Debug] <- run -i 10 -[343] [Step Debug] <- run -i 10 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 18:30:55.127822 - -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:30:55.714511 - -[343] Log opened at 2024-10-17 18:30:55.856145 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 10 -[347] Log opened at 2024-10-17 18:30:56.026195 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] Log opened at 2024-10-17 18:30:56.026463 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894 -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894 -[349] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 10 -[347] [Step Debug] <- run -i 10 -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:30:56.670192 - -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 18:30:57.036478 - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:30:57.211691 - -[347] Log opened at 2024-10-17 18:30:57.302200 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 894 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 10 -[347] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 11 -[347] [Step Debug] -> - -[347] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[347] [Step Debug] -> - -[347] [Step Debug] <- property_get -i 13 -n "$presupuesto" -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 14 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTc3ZTJkMzViYWFkMWVmM2U0NWVhMWYzMmM5NjlmZGQwODI0ZWQ2ZDEzYWZiMzUwZTMyODUxNTEwNmI5MmZjZCddPSRtb2RlbFRhcmlmYS0+Z2V0Tm9tYnJlVGFyaWZhQWNhYmFkbygkdGFyaWZhX2FjYWJhZG9faWQpWzBdLT5ub21icmU= -[347] [Step Debug] -> - -[347] [Step Debug] <- step_over -i 17 -[347] [Step Debug] -> - -[347] [Step Debug] <- stack_get -i 18 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 19 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- property_get -i 21 -n "$tirada->tirada" -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_names -i 22 -d 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_remove -i 24 -d 3470025 -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 25 -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:31:42.838821 - -[348] Log opened at 2024-10-17 18:31:45.953402 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:31:48.934798 - -[348] Log opened at 2024-10-17 18:31:49.148699 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 18:31:49.155442 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:31:49.819731 - -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:31:50.385697 - -[348] Log opened at 2024-10-17 18:31:50.569551 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] Log opened at 2024-10-17 18:31:50.768733 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] Log opened at 2024-10-17 18:31:50.784558 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:31:51.907318 - -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:31:52.661819 - -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] Log closed at 2024-10-17 18:31:53.035440 - -[316] Log opened at 2024-10-17 18:31:53.141910 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:31:54.323243 - -[351] Log opened at 2024-10-17 18:32:31.578269 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 18:32:34.539889 - -[351] Log opened at 2024-10-17 18:32:34.761635 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 18:32:34.780380 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 18:32:35.446032 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:32:36.191789 - -[327] Log opened at 2024-10-17 18:32:36.248097 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log opened at 2024-10-17 18:32:36.448317 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 18:32:36.448243 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:32:37.591778 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:32:38.380527 - -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:32:38.772134 - -[349] Log opened at 2024-10-17 18:32:38.866328 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] Log closed at 2024-10-17 18:32:40.111017 - -[348] Log opened at 2024-10-17 18:32:54.206668 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:32:57.176890 - -[348] Log opened at 2024-10-17 18:32:57.365719 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 18:32:57.372234 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 18:32:58.039787 - -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 18:32:58.779608 - -[341] Log opened at 2024-10-17 18:32:58.840348 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 18:32:58.996362 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 18:32:59.001068 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 18:33:00.303842 - -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 18:33:01.058422 - -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 18:33:01.436880 - -[320] Log opened at 2024-10-17 18:33:01.485268 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 18:33:02.802828 - -[316] Log opened at 2024-10-17 18:37:16.878514 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:37:19.751392 - -[316] Log opened at 2024-10-17 18:37:19.970678 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 18:37:19.983154 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] Log closed at 2024-10-17 18:37:20.668111 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:37:21.316271 - -[327] Log opened at 2024-10-17 18:37:21.461026 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log opened at 2024-10-17 18:37:21.680491 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 18:37:21.695427 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 18:37:22.810870 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:37:23.568185 - -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:37:23.921741 - -[351] Log opened at 2024-10-17 18:37:24.021214 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 18:37:25.293928 - -[349] Log opened at 2024-10-17 18:45:17.755306 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 10 -[349] [Step Debug] -> - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:45:20.142676 - -[349] Log opened at 2024-10-17 18:45:20.352196 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[341] Log opened at 2024-10-17 18:45:20.367330 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[341] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[349] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 -[341] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 10 -[349] [Step Debug] <- run -i 10 -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:45:20.531818 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:45:21.167594 - -[341] Log opened at 2024-10-17 18:45:21.308493 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] Log opened at 2024-10-17 18:45:21.313023 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[348] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[341] [Step Debug] -> - -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[348] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[341] [Step Debug] <- run -i 10 -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:45:21.977361 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:45:22.312163 - -[320] Log opened at 2024-10-17 18:47:50.472671 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:47:53.002949 - -[320] Log opened at 2024-10-17 18:47:53.192336 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[320] [Step Debug] -> - -[327] Log opened at 2024-10-17 18:47:53.210493 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 6 -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:47:53.361400 - -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:47:54.000052 - -[327] Log opened at 2024-10-17 18:47:54.150642 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[316] Log opened at 2024-10-17 18:47:54.468029 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[347] Log opened at 2024-10-17 18:47:54.470689 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[316] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[316] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[347] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[347] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:47:55.076217 - -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:47:55.463880 - -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:47:55.640962 - -[316] Log opened at 2024-10-17 18:47:55.749323 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 921 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- stack_get -i 11 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 12 -n "$tirada->tirada" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 13 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 15 -n "$lineas" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 16 -n "$lineas[0]" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 17 -n "$lineas[0]" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 18 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 21 -n "$lineas[0]['atributes']" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 22 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 24 -n "$lineas[0]" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 25 -n "$lineas[0]->atributes" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 26 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 27 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 28 -n "$lineas[0]" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 29 -n "$lineas[0]" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_names -i 30 -d 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 32 -n "$lineas[0]" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 33 -n "$lineas[0]->casts" -p 0 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 34 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 35 -n "$paginas" -d 0 -c 0 -[316] [Step Debug] -> - -[316] [Step Debug] <- property_get -i 36 -n "$paginasNegro" -d 0 -c 0 -[316] [Step Debug] -> - -[351] Log opened at 2024-10-17 18:54:13.174746 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[316] [Step Debug] <- breakpoint_remove -i 37 -d 3160124 -[351] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 38 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[316] [Step Debug] -> - -[316] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[351] [Step Debug] <- run -i 10 -[316] [Step Debug] <- run -i 39 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:54:15.679345 - -[351] [Step Debug] -> - -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:54:15.863738 - -[316] Log opened at 2024-10-17 18:54:15.976865 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[316] [Step Debug] <- run -i 10 -[316] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:54:16.267519 - -[341] Log opened at 2024-10-17 18:54:57.434484 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 10 -[341] [Step Debug] -> - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:54:58.268013 - -[350] Log opened at 2024-10-17 18:55:20.970732 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 10 -[350] [Step Debug] -> - -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:55:22.448037 - -[350] Log opened at 2024-10-17 18:55:22.623742 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[349] Log opened at 2024-10-17 18:55:22.635037 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[349] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[350] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 -[349] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 10 -[350] [Step Debug] <- run -i 10 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:55:22.869256 - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:55:23.499229 - -[349] Log opened at 2024-10-17 18:55:23.537998 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[343] Log opened at 2024-10-17 18:55:23.547329 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[348] Log opened at 2024-10-17 18:55:23.559399 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[343] [Step Debug] -> - -[349] [Step Debug] -> - -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[343] [Step Debug] <- run -i 10 -[349] [Step Debug] <- run -i 10 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 18:55:24.240604 - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:55:24.633574 - -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:55:24.800583 - -[347] Log opened at 2024-10-17 18:55:32.508394 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[347] [Step Debug] <- run -i 10 -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:55:33.297856 - -[347] Log opened at 2024-10-17 18:55:34.024494 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[351] Log opened at 2024-10-17 18:55:34.086202 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[351] [Step Debug] -> - -[347] [Step Debug] <- run -i 10 -[351] [Step Debug] <- run -i 6 -[316] Log opened at 2024-10-17 18:55:34.424010 -[316] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.316' -[316] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[316] [Step Debug] -> - -[316] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[316] [Step Debug] -> - -[341] Log opened at 2024-10-17 18:55:34.438802 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[316] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[316] [Step Debug] -> - -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[316] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1 -[341] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[316] [Step Debug] -> - -[316] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[316] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[316] [Step Debug] -> - -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:55:34.767106 - -[349] Log opened at 2024-10-17 18:55:34.961779 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[349] [Step Debug] -> - -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:55:34.990764 - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[350] Log opened at 2024-10-17 18:55:35.122526 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[327] Log opened at 2024-10-17 18:55:35.208111 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[341] [Step Debug] <- run -i 10 -[316] [Step Debug] <- run -i 10 -[327] [Step Debug] <- run -i 6 -[350] [Step Debug] <- run -i 10 -[349] [Step Debug] <- run -i 10 -[320] Log opened at 2024-10-17 18:55:35.306825 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[343] Log opened at 2024-10-17 18:55:35.752336 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[348] Log opened at 2024-10-17 18:55:35.911313 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[348] [Step Debug] -> - -[316] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[316] Log closed at 2024-10-17 18:55:35.953821 - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:55:36.191267 - -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:55:36.427364 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:55:36.637210 - -[347] Log opened at 2024-10-17 18:55:36.708509 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[351] Log opened at 2024-10-17 18:55:36.804891 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[351] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:55:36.862844 - -[352] Log opened at 2024-10-17 18:55:36.875661 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[352] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[351] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1 -[352] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[351] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[352] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[320] [Step Debug] <- run -i 10 -[352] [Step Debug] <- run -i 10 -[351] [Step Debug] <- run -i 10 -[343] [Step Debug] <- run -i 10 -[347] [Step Debug] <- run -i 10 -[348] [Step Debug] <- run -i 10 -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:55:37.789842 - -[352] [Step Debug] -> - -[352] Log closed at 2024-10-17 18:55:37.997987 - -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:55:38.225873 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:55:38.456936 - -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 18:55:38.658774 - -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:55:38.848469 - -[349] Log opened at 2024-10-17 18:55:46.398556 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[349] [Step Debug] <- run -i 10 -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:55:47.076190 - -[350] Log opened at 2024-10-17 18:56:20.393797 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 10 -[350] [Step Debug] -> - -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:56:23.197373 - -[341] Log opened at 2024-10-17 18:56:29.054598 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[341] [Step Debug] <- run -i 10 -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:56:29.800181 - -[327] Log opened at 2024-10-17 18:56:35.560758 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:56:36.349930 - -[327] Log opened at 2024-10-17 18:56:40.013980 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:56:42.943369 - -[327] Log opened at 2024-10-17 18:56:42.991323 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:56:43.283324 - -[327] Log opened at 2024-10-17 18:56:43.459326 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:56:43.697733 - -[351] Log opened at 2024-10-17 18:57:32.334186 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[351] [Step Debug] <- run -i 10 -[351] [Step Debug] -> - -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:57:33.881020 - -[351] Log opened at 2024-10-17 18:57:34.111753 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[351] [Step Debug] <- run -i 10 -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:57:35.193008 - -[347] Log opened at 2024-10-17 18:57:35.236358 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[320] Log opened at 2024-10-17 18:57:35.247121 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[351] Log opened at 2024-10-17 18:57:35.255744 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[320] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[347] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[351] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1 -[320] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" -[347] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[351] [Step Debug] -> - -[347] [Step Debug] -> - -[320] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[351] [Step Debug] -> - -[320] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[347] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[351] [Step Debug] -> - -[347] [Step Debug] <- run -i 10 -[351] [Step Debug] <- run -i 10 -[320] [Step Debug] <- run -i 10 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:57:35.921809 - -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:57:36.261578 - -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:57:36.427938 - -[343] Log opened at 2024-10-17 18:58:00.660872 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[343] [Step Debug] <- run -i 10 -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 18:58:01.433654 - -[348] Log opened at 2024-10-17 18:58:10.648692 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:58:11.435912 - -[348] Log opened at 2024-10-17 18:58:13.599052 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:58:14.352092 - -[348] Log opened at 2024-10-17 18:58:15.615827 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[352] Log opened at 2024-10-17 18:58:15.685674 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[352] [Step Debug] -> - -[348] [Step Debug] <- run -i 10 -[352] [Step Debug] <- run -i 6 -[349] Log opened at 2024-10-17 18:58:15.858551 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[350] Log opened at 2024-10-17 18:58:15.941875 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[350] [Step Debug] -> - -[341] Log opened at 2024-10-17 18:58:16.023169 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[341] [Step Debug] -> - -[341] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[341] [Step Debug] -> - -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:58:16.416566 - -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[352] [Step Debug] -> - -[352] Log closed at 2024-10-17 18:58:16.617037 - -[327] Log opened at 2024-10-17 18:58:24.700424 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[350] [Step Debug] <- run -i 10 -[341] [Step Debug] <- run -i 10 -[349] [Step Debug] <- run -i 10 -[327] [Step Debug] <- run -i 10 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:58:25.498071 - -[349] [Step Debug] -> - -[349] Log closed at 2024-10-17 18:58:25.707143 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:58:25.990518 - -[341] [Step Debug] -> - -[341] Log closed at 2024-10-17 18:58:26.215919 - -[327] Log opened at 2024-10-17 18:58:27.281120 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[347] Log opened at 2024-10-17 18:58:27.357456 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[347] [Step Debug] -> - -[347] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[347] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[347] [Step Debug] <- run -i 6 -[320] Log opened at 2024-10-17 18:58:27.471167 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[351] Log opened at 2024-10-17 18:58:27.564484 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[351] [Step Debug] -> - -[351] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[351] [Step Debug] -> - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 18:58:28.044126 - -[347] [Step Debug] -> - -[347] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[347] [Step Debug] -> - -[347] Log closed at 2024-10-17 18:58:28.255182 - -[343] Log opened at 2024-10-17 18:58:28.526154 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[343] [Step Debug] -> - -[343] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[343] [Step Debug] -> - -[351] [Step Debug] <- run -i 10 -[320] [Step Debug] <- run -i 10 -[343] [Step Debug] <- run -i 10 -[348] Log opened at 2024-10-17 18:58:28.742946 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[348] [Step Debug] -> - -[348] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[348] [Step Debug] -> - -[352] Log opened at 2024-10-17 18:58:28.857145 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] <- run -i 10 -[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[352] [Step Debug] -> - -[350] Log opened at 2024-10-17 18:58:28.973268 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[350] [Step Debug] -> - -[350] [Step Debug] <- run -i 6 -[352] [Step Debug] <- run -i 10 -[349] Log opened at 2024-10-17 18:58:29.089669 -[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' -[349] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[349] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[349] [Step Debug] -> - -[349] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[349] [Step Debug] -> - -[351] [Step Debug] -> - -[351] Log closed at 2024-10-17 18:58:29.254354 - -[343] [Step Debug] -> - -[343] Log closed at 2024-10-17 18:58:29.469089 - -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 18:58:29.693941 - -[348] [Step Debug] -> - -[348] Log closed at 2024-10-17 18:58:29.899689 - -[350] [Step Debug] -> - -[350] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[350] [Step Debug] -> - -[350] Log closed at 2024-10-17 18:58:30.103093 - -[352] [Step Debug] -> - -[352] Log closed at 2024-10-17 18:58:30.306905 - -[349] [Step Debug] <- stop -i 10 -[349] [Step Debug] -> - -[341] Log opened at 2024-10-17 18:58:40.957239 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 18:58:42.166796 - -[327] Log opened at 2024-10-17 18:59:07.047746 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 18:59:10.616157 - -[347] Log opened at 2024-10-17 18:59:16.434843 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 18:59:17.717883 - -[353] Log opened at 2024-10-17 18:59:23.226114 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 18:59:24.512238 - -[353] Log opened at 2024-10-17 18:59:28.289515 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 18:59:31.672615 - -[353] Log opened at 2024-10-17 18:59:31.747860 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 18:59:32.748934 - -[351] Log opened at 2024-10-17 19:06:22.041823 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 19:06:24.072136 - -[351] Log opened at 2024-10-17 19:06:24.311164 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 19:06:24.329897 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 19:06:25.002149 - -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 19:06:25.611164 - -[343] Log opened at 2024-10-17 19:06:25.797198 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] Log opened at 2024-10-17 19:06:25.807109 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] Log opened at 2024-10-17 19:06:25.817821 -[350] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.350' -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 19:06:26.934056 - -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[350] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[350] Log closed at 2024-10-17 19:06:27.285234 - -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 19:06:28.054349 - -[352] Log opened at 2024-10-17 19:06:37.863850 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:06:39.138487 - -[352] Log opened at 2024-10-17 19:06:39.259159 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 19:06:39.356506 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:06:39.424861 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log opened at 2024-10-17 19:06:39.517252 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log opened at 2024-10-17 19:06:39.647881 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log opened at 2024-10-17 19:06:39.868014 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] Log opened at 2024-10-17 19:06:40.008222 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log opened at 2024-10-17 19:06:40.113592 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log opened at 2024-10-17 19:06:40.227614 -[348] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.348' -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:06:40.519793 - -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 19:06:40.940233 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:06:41.356392 - -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:06:41.764115 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:06:42.185451 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:06:42.606477 - -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 19:06:43.005180 - -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 19:06:43.417265 - -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[348] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[348] Log closed at 2024-10-17 19:06:43.830988 - -[352] Log opened at 2024-10-17 19:06:49.902305 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:06:51.038096 - -[354] Log opened at 2024-10-17 19:07:14.352464 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:07:17.659622 - -[327] Log opened at 2024-10-17 19:07:39.477801 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:07:41.414198 - -[327] Log opened at 2024-10-17 19:07:41.749350 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 19:07:41.849152 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:07:42.450141 - -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 19:07:43.290917 - -[320] Log opened at 2024-10-17 19:07:43.357042 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:07:43.485137 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 19:07:43.487731 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:07:44.624591 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:07:45.401457 - -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:07:45.755136 - -[352] Log opened at 2024-10-17 19:07:52.032434 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:07:52.076463 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 19:07:52.910765 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] Log opened at 2024-10-17 19:07:53.016938 -[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log opened at 2024-10-17 19:07:53.118295 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:07:53.285193 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:07:53.542950 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 19:07:53.672777 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:07:53.771294 - -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log opened at 2024-10-17 19:07:53.901208 -[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 19:07:54.213640 - -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:07:54.326126 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] Log closed at 2024-10-17 19:07:54.666939 - -[347] Log opened at 2024-10-17 19:07:54.754980 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:07:55.064892 - -[354] Log opened at 2024-10-17 19:07:55.127053 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] Log opened at 2024-10-17 19:07:55.252941 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log opened at 2024-10-17 19:07:55.352872 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:07:55.458997 - -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] Log opened at 2024-10-17 19:07:55.501835 -[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[356] Log opened at 2024-10-17 19:07:55.587120 -[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' -[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log opened at 2024-10-17 19:07:55.710292 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log opened at 2024-10-17 19:07:55.805398 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 19:07:55.888812 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[351] Log closed at 2024-10-17 19:07:56.323367 - -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:07:56.716376 - -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:07:57.142722 - -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:07:57.532316 - -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] Log closed at 2024-10-17 19:07:57.944732 - -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 19:07:58.346383 - -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] Log closed at 2024-10-17 19:07:58.740794 - -[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[356] Log closed at 2024-10-17 19:07:59.148994 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:07:59.584361 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:07:59.976168 - -[327] Log opened at 2024-10-17 19:08:04.463402 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] Log opened at 2024-10-17 19:08:04.565974 -[343] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.343' -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:08:05.644660 - -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[343] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[343] Log closed at 2024-10-17 19:08:06.035722 - -[353] Log opened at 2024-10-17 19:08:42.537482 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:08:45.824625 - -[347] Log opened at 2024-10-17 19:08:58.930565 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:09:02.468218 - -[352] Log opened at 2024-10-17 19:10:19.409409 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:10:21.344416 - -[352] Log opened at 2024-10-17 19:10:21.739806 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:10:21.822537 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:10:22.438505 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:10:23.212767 - -[320] Log opened at 2024-10-17 19:10:23.421093 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] Log opened at 2024-10-17 19:10:23.544882 -[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] Log opened at 2024-10-17 19:10:23.545804 -[341] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.341' -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] Log closed at 2024-10-17 19:10:24.800108 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:10:25.561331 - -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[341] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[341] Log closed at 2024-10-17 19:10:25.951826 - -[353] Log opened at 2024-10-17 19:10:37.135626 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 19:10:37.192807 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log opened at 2024-10-17 19:10:37.522728 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log opened at 2024-10-17 19:10:37.753971 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:10:37.835119 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log opened at 2024-10-17 19:10:37.971900 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] Log opened at 2024-10-17 19:10:38.142484 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[356] Log opened at 2024-10-17 19:10:38.267906 -[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' -[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] Log opened at 2024-10-17 19:10:38.337692 -[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:10:38.458428 - -[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:10:38.943933 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:10:39.424593 - -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:10:39.864601 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:10:40.265292 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:10:40.682582 - -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:10:41.089447 - -[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[356] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[356] Log closed at 2024-10-17 19:10:41.542916 - -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] Log closed at 2024-10-17 19:10:41.955829 - -[355] Log opened at 2024-10-17 19:10:43.803895 -[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[355] Log closed at 2024-10-17 19:10:45.122795 - -[353] Log opened at 2024-10-17 19:10:45.126613 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 19:10:45.197212 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] Log opened at 2024-10-17 19:10:45.349211 -[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log opened at 2024-10-17 19:10:45.422026 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:10:45.492625 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log opened at 2024-10-17 19:10:45.680889 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log opened at 2024-10-17 19:10:45.736430 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:10:45.866589 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log opened at 2024-10-17 19:10:45.934755 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:10:46.417173 - -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:10:46.828887 - -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] Log closed at 2024-10-17 19:10:47.249696 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:10:47.676042 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:10:48.117690 - -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:10:48.510089 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:10:48.930416 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:10:49.352937 - -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:10:49.765322 - -[363] Log opened at 2024-10-17 19:10:56.214619 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:10:57.371045 - -[353] Log opened at 2024-10-17 19:11:18.276080 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:11:21.762437 - -[347] Log opened at 2024-10-17 19:11:38.197018 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:11:41.073043 - -[361] Log opened at 2024-10-17 19:12:05.168866 -[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] Log closed at 2024-10-17 19:12:07.167131 - -[361] Log opened at 2024-10-17 19:12:07.408118 -[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:12:07.415471 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] Log closed at 2024-10-17 19:12:08.095000 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:12:08.730717 - -[362] Log opened at 2024-10-17 19:12:08.789466 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:12:08.934614 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] Log opened at 2024-10-17 19:12:08.934676 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:12:10.042449 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:12:10.856570 - -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:12:11.223157 - -[320] Log opened at 2024-10-17 19:12:17.635145 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:12:18.886396 - -[320] Log opened at 2024-10-17 19:12:19.746671 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:12:19.829999 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log opened at 2024-10-17 19:12:19.981211 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log opened at 2024-10-17 19:12:20.076156 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log opened at 2024-10-17 19:12:20.183550 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log opened at 2024-10-17 19:12:20.330604 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:12:20.370341 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] Log opened at 2024-10-17 19:12:20.431212 -[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log opened at 2024-10-17 19:12:20.572994 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:12:20.949187 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:12:21.350013 - -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:12:21.739372 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:12:22.155794 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:12:22.568529 - -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:12:23.003221 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:12:23.408863 - -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] Log closed at 2024-10-17 19:12:23.820847 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:12:24.247911 - -[359] Log opened at 2024-10-17 19:12:29.802366 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:12:29.845289 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:12:30.942681 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:12:31.342953 - -[327] Log opened at 2024-10-17 19:12:54.487090 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:12:57.829637 - -[352] Log opened at 2024-10-17 19:14:49.125430 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:14:51.134618 - -[352] Log opened at 2024-10-17 19:14:51.368912 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:14:51.374214 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:14:52.042471 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:14:52.705254 - -[363] Log opened at 2024-10-17 19:14:52.763288 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:14:52.903325 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 19:14:52.904443 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:14:53.970381 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:14:54.720028 - -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:14:55.090861 - -[353] Log opened at 2024-10-17 19:14:58.512899 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] Log opened at 2024-10-17 19:14:58.583730 -[347] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.347' -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log opened at 2024-10-17 19:14:59.385584 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] Log opened at 2024-10-17 19:14:59.495943 -[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log opened at 2024-10-17 19:14:59.698300 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] Log opened at 2024-10-17 19:14:59.797438 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:14:59.812258 - -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:14:59.941546 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log opened at 2024-10-17 19:15:00.072117 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log opened at 2024-10-17 19:15:00.143555 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] Log opened at 2024-10-17 19:15:00.241195 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[347] Log closed at 2024-10-17 19:15:00.319665 - -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:15:00.369010 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:15:00.765784 - -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[361] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[361] Log closed at 2024-10-17 19:15:01.171756 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log closed at 2024-10-17 19:15:01.589460 - -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:15:01.992219 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:15:02.390442 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:15:02.805654 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:15:03.229713 - -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:15:03.640383 - -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:15:04.030995 - -[353] Log opened at 2024-10-17 19:15:08.633620 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:15:08.691947 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:15:09.815772 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:15:10.228085 - -[366] Log opened at 2024-10-17 19:15:29.478550 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] Log closed at 2024-10-17 19:15:32.835847 - -[367] Log opened at 2024-10-17 19:17:11.876819 -[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] Log closed at 2024-10-17 19:17:13.802086 - -[367] Log opened at 2024-10-17 19:17:14.049052 -[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] Log opened at 2024-10-17 19:17:14.057492 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] Log closed at 2024-10-17 19:17:14.743473 - -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:17:15.378835 - -[359] Log opened at 2024-10-17 19:17:15.430352 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:17:15.605482 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:17:15.629749 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:17:16.757687 - -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:17:17.521940 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:17:17.876908 - -[354] Log opened at 2024-10-17 19:17:20.215272 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:17:21.479496 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:17:21.546708 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:17:21.562689 - -[352] Log opened at 2024-10-17 19:17:21.631889 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log opened at 2024-10-17 19:17:21.726762 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log opened at 2024-10-17 19:17:21.967576 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:17:22.688614 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:17:23.099156 - -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:17:23.510324 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:17:23.916457 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] Log opened at 2024-10-17 19:17:24.089781 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:17:24.331120 - -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] Log closed at 2024-10-17 19:17:25.224287 - -[366] Log opened at 2024-10-17 19:17:29.616917 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] Log opened at 2024-10-17 19:17:29.712192 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] Log closed at 2024-10-17 19:17:30.800173 - -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:17:31.210185 - -[367] Log opened at 2024-10-17 19:17:52.472233 -[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] Log closed at 2024-10-17 19:17:55.727274 - -[327] Log opened at 2024-10-17 19:18:36.896851 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:18:38.788213 - -[327] Log opened at 2024-10-17 19:18:39.031946 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:18:39.039437 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:18:39.729139 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:18:40.398179 - -[354] Log opened at 2024-10-17 19:18:40.464545 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:18:40.596455 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:18:40.612826 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:18:41.670107 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:18:42.462220 - -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:18:42.857655 - -[352] Log opened at 2024-10-17 19:19:02.865233 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:19:04.921034 - -[352] Log opened at 2024-10-17 19:19:05.129159 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:19:05.135430 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:19:05.792997 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:19:06.519189 - -[353] Log opened at 2024-10-17 19:19:06.578251 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:19:06.709451 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] Log opened at 2024-10-17 19:19:06.710181 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:19:07.803819 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:19:08.642552 - -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] Log closed at 2024-10-17 19:19:09.022400 - -[362] Log opened at 2024-10-17 19:19:12.075771 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:19:13.356453 - -[366] Log opened at 2024-10-17 19:19:13.365975 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log opened at 2024-10-17 19:19:13.951156 -[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] Log opened at 2024-10-17 19:19:14.145647 -[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log opened at 2024-10-17 19:19:14.235891 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:19:14.319942 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log opened at 2024-10-17 19:19:14.486547 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] Log closed at 2024-10-17 19:19:14.541295 - -[363] Log opened at 2024-10-17 19:19:14.625133 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:19:15.122299 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[359] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[359] Log closed at 2024-10-17 19:19:15.197636 - -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log opened at 2024-10-17 19:19:15.350834 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:19:15.528125 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[367] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] Log opened at 2024-10-17 19:19:15.611634 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[367] Log closed at 2024-10-17 19:19:15.613191 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:19:16.025482 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:19:16.418261 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log closed at 2024-10-17 19:19:16.817592 - -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:19:17.219471 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:19:17.627274 - -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] Log closed at 2024-10-17 19:19:18.063002 - -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:19:18.459292 - -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] Log closed at 2024-10-17 19:19:18.868609 - -[369] Log opened at 2024-10-17 19:19:24.989774 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:19:26.155540 - -[370] Log opened at 2024-10-17 19:19:46.084840 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:19:49.314275 - -[354] Log opened at 2024-10-17 19:19:57.801175 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:20:01.303279 - -[327] Log opened at 2024-10-17 19:20:06.527860 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:20:09.988439 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:20:10.036961 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log opened at 2024-10-17 19:20:11.721538 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:20:13.063851 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:20:15.719665 - -[363] Log opened at 2024-10-17 19:20:19.937678 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:20:23.307556 - -[353] Log opened at 2024-10-17 19:20:59.863931 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[353] [Step Debug] -> - -[353] [Step Debug] <- run -i 11 -[353] [Step Debug] -> - -[353] [Step Debug] -> - -[353] [Step Debug] -> - -[353] [Step Debug] <- stack_get -i 12 -[353] [Step Debug] -> - -[353] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- context_names -i 14 -d 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[353] [Step Debug] -> - -[352] Log opened at 2024-10-17 19:21:01.626921 -[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' -[352] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[352] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[352] [Step Debug] -> - -[352] [Step Debug] <- run -i 11 -[353] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- property_get -i 17 -n "$lineas[0]" -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- property_get -i 18 -n "$lineas[0]" -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- context_names -i 19 -d 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315 -[353] [Step Debug] -> - -[353] [Step Debug] -> - -[353] [Step Debug] <- run -i 23 -[353] [Step Debug] -> - -[353] Log closed at 2024-10-17 19:21:58.782019 - -[352] [Step Debug] -> - -[352] [Step Debug] -> - -[352] [Step Debug] -> - -[352] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315 -[352] [Step Debug] -> - -[352] [Step Debug] -> - -[352] [Step Debug] <- stack_get -i 13 -[352] [Step Debug] -> - -[352] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0 -[352] [Step Debug] -> - -[352] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0 -[352] [Step Debug] -> - -[362] Log opened at 2024-10-17 19:21:59.290229 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 12 -[352] [Step Debug] <- context_names -i 16 -d 0 -[352] [Step Debug] -> - -[352] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[352] [Step Debug] -> - -[352] [Step Debug] <- run -i 18 -[352] [Step Debug] -> - -[352] Log closed at 2024-10-17 19:22:05.835014 - -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] <- stack_get -i 13 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_names -i 16 -d 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 18 -n "$excluirRotativa" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_remove -i 19 -d 3620001 -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 20 -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] <- stack_get -i 21 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 22 -n "$lineas[0]" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 23 -n "$data['excluirRotativa']" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_names -i 24 -d 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 26 -[362] [Step Debug] -> - -[362] Log closed at 2024-10-17 19:22:36.588541 - -[362] Log opened at 2024-10-17 19:22:39.021472 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 11 -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] <- stack_get -i 12 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_names -i 15 -d 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 17 -[362] [Step Debug] -> - -[362] Log closed at 2024-10-17 19:22:51.140958 - -[366] Log opened at 2024-10-17 19:23:04.462997 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 12 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 13 -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 14 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 15 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 16 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 17 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- step_over -i 19 -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 20 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 21 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 22 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 23 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 25 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 26 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 27 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 29 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 31 -[366] [Step Debug] -> - -[366] Log closed at 2024-10-17 19:23:37.043115 - -[366] Log opened at 2024-10-17 19:23:39.613608 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 315 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 924 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 12 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 13 -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 14 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 15 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 16 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 17 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_remove -i 19 -d 3660007 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_remove -i 20 -d 3660008 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 316 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1307 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 24 -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 25 -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 26 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 27 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 29 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 31 -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 32 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 33 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 34 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 35 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 37 -n "$datos_entrada" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 38 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_remove -i 39 -d 3660015 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 40 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 41 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 42 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 43 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 44 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 45 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 46 -[366] [Step Debug] -> - -[366] Log closed at 2024-10-17 19:25:30.426942 - -[366] Log opened at 2024-10-17 19:25:32.729416 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 316 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 12 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 13 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 16 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 18 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 19 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 21 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 22 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 24 -[366] [Step Debug] -> - -[366] Log closed at 2024-10-17 19:25:54.936854 - -[366] Log opened at 2024-10-17 19:25:57.389062 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 316 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 12 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 13 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 16 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_remove -i 18 -d 3660022 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 19 -[366] [Step Debug] -> - -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 20 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 21 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 22 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 23 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- step_over -i 25 -[366] [Step Debug] -> - -[366] [Step Debug] <- stack_get -i 26 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 27 -n "$lineas[0]" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_names -i 29 -d 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[366] [Step Debug] -> - -[366] [Step Debug] <- run -i 31 -[366] [Step Debug] -> - -[366] [Step Debug] <- breakpoint_remove -i 32 -d 3660024 -[366] [Step Debug] -> - -[366] Log closed at 2024-10-17 19:26:08.687762 - -[370] Log opened at 2024-10-17 19:26:56.420926 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:26:58.335084 - -[370] Log opened at 2024-10-17 19:26:58.662937 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:26:58.752097 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:26:59.354729 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:27:00.158068 - -[327] Log opened at 2024-10-17 19:27:00.244627 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:27:00.407119 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:27:00.434730 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:27:01.514997 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:27:02.273214 - -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:27:02.644083 - -[362] Log opened at 2024-10-17 19:27:10.020631 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:27:11.303004 - -[366] Log opened at 2024-10-17 19:27:11.313361 -[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] Log opened at 2024-10-17 19:27:11.390306 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log opened at 2024-10-17 19:27:11.542039 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log opened at 2024-10-17 19:27:11.604322 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[366] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[366] Log closed at 2024-10-17 19:27:12.534511 - -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:27:12.935681 - -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:27:13.361216 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:27:13.778469 - -[327] Log opened at 2024-10-17 19:27:18.453882 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:27:19.672543 - -[370] Log opened at 2024-10-17 19:27:44.765552 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:27:48.990997 - -[320] Log opened at 2024-10-17 19:28:32.573471 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:28:34.525789 - -[320] Log opened at 2024-10-17 19:28:34.784182 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:28:34.802037 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:28:35.550130 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:28:36.282138 - -[353] Log opened at 2024-10-17 19:28:36.348607 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:28:36.385259 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:28:36.397790 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:28:37.615596 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:28:38.392403 - -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:28:38.757991 - -[369] Log opened at 2024-10-17 19:28:51.038432 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:28:52.282199 - -[369] Log opened at 2024-10-17 19:28:54.477694 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] Log opened at 2024-10-17 19:28:54.584542 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:28:54.658183 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log opened at 2024-10-17 19:28:54.727219 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log opened at 2024-10-17 19:28:54.862484 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log opened at 2024-10-17 19:28:54.984820 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:28:55.045463 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:28:55.723093 - -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:28:56.130516 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:28:56.544508 - -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:28:56.953014 - -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:28:57.361688 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:28:57.754870 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:28:58.165074 - -[363] Log opened at 2024-10-17 19:29:12.456077 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:29:13.648822 - -[354] Log opened at 2024-10-17 19:29:28.677781 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:29:32.562878 - -[372] Log opened at 2024-10-17 19:29:38.245536 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 19:29:39.552959 - -[369] Log opened at 2024-10-17 19:29:45.650731 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:29:46.879288 - -[369] Log opened at 2024-10-17 19:29:51.174515 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:29:54.473849 - -[369] Log opened at 2024-10-17 19:29:54.563012 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:29:55.517289 - -[369] Log opened at 2024-10-17 19:29:55.804617 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:29:56.892637 - -[371] Log opened at 2024-10-17 19:30:33.752147 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:30:35.641281 - -[371] Log opened at 2024-10-17 19:30:35.879596 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log opened at 2024-10-17 19:30:36.426780 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:30:37.191613 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] Log opened at 2024-10-17 19:30:37.310102 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:30:37.347514 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] Log opened at 2024-10-17 19:30:37.348297 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:30:37.432418 - -[327] Log opened at 2024-10-17 19:30:37.461658 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:30:38.534653 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:30:38.551744 - -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:30:39.275106 - -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:30:39.632421 - -[320] Log opened at 2024-10-17 19:32:38.846103 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:32:40.089869 - -[320] Log opened at 2024-10-17 19:32:42.353958 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:32:42.449622 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:32:42.524257 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log opened at 2024-10-17 19:32:42.634258 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log opened at 2024-10-17 19:32:42.748959 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:32:43.654983 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:32:44.067469 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:32:44.527202 - -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:32:44.927577 - -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 19:32:45.332890 - -[369] Log opened at 2024-10-17 19:32:50.835101 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] Log opened at 2024-10-17 19:32:50.923045 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:32:51.995355 - -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:32:52.402333 - -[353] Log opened at 2024-10-17 19:33:09.524731 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:33:14.354940 - -[353] Log opened at 2024-10-17 19:33:18.154047 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:33:19.372219 - -[353] Log opened at 2024-10-17 19:33:24.245366 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:33:25.535787 - -[327] Log opened at 2024-10-17 19:33:50.994658 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:33:55.100200 - -[371] Log opened at 2024-10-17 19:34:53.492588 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:34:55.486639 - -[371] Log opened at 2024-10-17 19:34:55.705881 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:34:56.655784 - -[371] Log opened at 2024-10-17 19:34:56.911962 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:34:57.865135 - -[371] Log opened at 2024-10-17 19:34:59.679449 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:35:01.773697 - -[371] Log opened at 2024-10-17 19:35:01.967898 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:35:03.405681 - -[320] Log opened at 2024-10-17 19:35:03.461705 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] Log opened at 2024-10-17 19:35:03.552285 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:35:03.558220 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:35:04.728882 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:35:05.526664 - -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:35:05.905222 - -[371] Log opened at 2024-10-17 19:35:06.554022 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:35:06.630590 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:35:07.814409 - -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:35:08.312177 - -[362] Log opened at 2024-10-17 19:35:09.797532 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:35:09.865191 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:35:09.899353 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] Log opened at 2024-10-17 19:35:09.987816 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log opened at 2024-10-17 19:35:10.108197 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:35:11.029779 - -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:35:11.421458 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:35:11.836080 - -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 19:35:12.242601 - -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:35:12.658295 - -[370] Log opened at 2024-10-17 19:35:18.278261 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 19:35:19.463189 - -[353] Log opened at 2024-10-17 19:35:36.017836 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:35:40.965474 - -[353] Log opened at 2024-10-17 19:35:43.625002 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:35:44.856727 - -[327] Log opened at 2024-10-17 19:35:50.998017 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:35:52.214132 - -[327] Log opened at 2024-10-17 19:35:56.336962 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:36:01.490982 - -[320] Log opened at 2024-10-17 19:36:07.038116 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:36:10.249016 - -[320] Log opened at 2024-10-17 19:36:10.545277 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] Log opened at 2024-10-17 19:36:10.550158 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:36:11.235490 - -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:36:11.987621 - -[371] Log opened at 2024-10-17 19:36:12.102297 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:36:12.239795 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 19:36:12.240447 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:36:13.453437 - -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:36:14.233099 - -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 19:36:14.600853 - -[362] Log opened at 2024-10-17 19:36:14.777684 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:36:16.023561 - -[354] Log opened at 2024-10-17 19:41:10.565028 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[354] [Step Debug] -> - -[354] [Step Debug] <- run -i 11 -[354] [Step Debug] -> - -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:41:11.970497 - -[354] Log opened at 2024-10-17 19:41:12.215986 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[372] Log opened at 2024-10-17 19:41:12.217477 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[372] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[372] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[372] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] -> - -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[354] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[354] [Step Debug] -> - -[372] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[354] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[372] [Step Debug] -> - -[372] [Step Debug] <- run -i 12 -[354] [Step Debug] <- run -i 12 -[372] [Step Debug] -> - -[372] Log closed at 2024-10-17 19:41:12.442981 - -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:41:13.094410 - -[369] Log opened at 2024-10-17 19:41:13.166187 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[369] [Step Debug] -> - -[372] Log opened at 2024-10-17 19:41:13.258595 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:41:13.260061 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] -> - -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[372] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[372] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[372] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- run -i 6 -[369] [Step Debug] <- run -i 11 -[372] [Step Debug] <- run -i 6 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[372] [Step Debug] -> - -[372] Log closed at 2024-10-17 19:41:13.889126 - -[369] [Step Debug] -> - -[369] Log closed at 2024-10-17 19:41:14.255933 - -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:41:14.408011 - -[370] Log opened at 2024-10-17 19:41:21.274434 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[370] [Step Debug] -> - -[353] Log opened at 2024-10-17 19:41:21.347247 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- run -i 6 -[370] [Step Debug] <- run -i 11 -[370] [Step Debug] -> - -[370] Log closed at 2024-10-17 19:41:22.090993 - -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[353] [Step Debug] -> - -[353] Log closed at 2024-10-17 19:41:22.366253 - -[327] Log opened at 2024-10-17 19:41:29.198000 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[371] Log opened at 2024-10-17 19:41:29.251590 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[371] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[371] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[371] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[371] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[371] [Step Debug] -> - -[371] [Step Debug] <- run -i 6 -[327] [Step Debug] <- run -i 11 -[371] [Step Debug] -> - -[371] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[371] [Step Debug] -> - -[371] Log closed at 2024-10-17 19:41:29.927698 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 19:41:30.158465 - -[320] Log opened at 2024-10-17 19:41:52.943709 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 22 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 11 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 12 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 15 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- step_over -i 17 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 18 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 19 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 21 -n "$data['excluirRotativa']" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 22 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- step_over -i 24 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 25 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 26 -n "$lineas[0]" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 27 -n "$data['excluirRotativa']" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 28 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 29 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_remove -i 30 -d 3200134 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 52 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 32 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 19:42:13.234335 - -[363] Log opened at 2024-10-17 19:42:54.000739 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 31 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 52 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[363] [Step Debug] -> - -[363] [Step Debug] <- run -i 12 -[363] [Step Debug] -> - -[363] [Step Debug] -> - -[363] [Step Debug] -> - -[363] [Step Debug] -> - -[363] [Step Debug] <- stack_get -i 13 -[363] [Step Debug] -> - -[363] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0 -[363] [Step Debug] -> - -[363] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0 -[363] [Step Debug] -> - -[363] [Step Debug] <- context_names -i 16 -d 0 -[363] [Step Debug] -> - -[363] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[363] [Step Debug] -> - -[363] [Step Debug] <- property_get -i 18 -n "$plana" -d 0 -c 0 -[363] [Step Debug] -> - -[363] [Step Debug] <- run -i 19 -[363] [Step Debug] -> - -[363] Log closed at 2024-10-17 19:43:40.638228 - -[362] Log opened at 2024-10-17 19:44:09.899561 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 30 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 53 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 12 -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] <- stack_get -i 13 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 14 -n "$lineas[0]" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 15 -n "$data['excluirRotativa']" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_names -i 16 -d 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 18 -[362] [Step Debug] -> - -[362] [Step Debug] <- stack_get -i 19 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 20 -n "$lineas[0]" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 21 -n "$data['excluirRotativa']" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_names -i 22 -d 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 24 -[362] [Step Debug] -> - -[362] Log closed at 2024-10-17 19:44:17.542700 - -[369] Log opened at 2024-10-17 19:44:28.943648 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 30 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[369] [Step Debug] -> - -[369] [Step Debug] <- run -i 11 -[369] [Step Debug] -> - -[369] [Step Debug] -> - -[369] [Step Debug] -> - -[369] [Step Debug] <- stack_get -i 12 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 13 -n "$lineas[0]" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_names -i 15 -d 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- step_over -i 17 -[369] [Step Debug] -> - -[369] [Step Debug] <- stack_get -i 18 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 19 -n "$lineas[0]" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_names -i 21 -d 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_remove -i 23 -d 3690007 -[369] [Step Debug] -> - -[369] [Step Debug] <- run -i 24 -[369] [Step Debug] -> - -[369] Log closed at 2024-10-17 19:44:41.274854 - -[372] Log opened at 2024-10-17 19:44:50.546591 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[372] [Step Debug] -> - -[372] [Step Debug] <- run -i 10 -[372] [Step Debug] -> - -[372] Log closed at 2024-10-17 19:44:51.361211 - -[372] Log opened at 2024-10-17 19:44:55.005262 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[372] [Step Debug] -> - -[372] [Step Debug] <- run -i 10 -[372] [Step Debug] -> - -[372] Log closed at 2024-10-17 19:44:55.695037 - -[354] Log opened at 2024-10-17 19:45:01.402490 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[354] [Step Debug] -> - -[354] [Step Debug] <- run -i 10 -[354] [Step Debug] -> - -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:45:04.591508 - -[354] Log opened at 2024-10-17 19:45:04.652788 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[354] [Step Debug] -> - -[354] [Step Debug] <- run -i 10 -[354] [Step Debug] -> - -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:45:07.130102 - -[354] Log opened at 2024-10-17 19:45:07.372703 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[370] Log opened at 2024-10-17 19:45:07.378147 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[370] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[370] [Step Debug] -> - -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[370] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[370] [Step Debug] -> - -[354] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[370] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[354] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[370] [Step Debug] -> - -[354] [Step Debug] -> - -[370] [Step Debug] <- run -i 10 -[354] [Step Debug] <- run -i 10 -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:45:07.558853 - -[370] [Step Debug] -> - -[370] Log closed at 2024-10-17 19:45:08.293070 - -[370] Log opened at 2024-10-17 19:45:08.352170 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[370] [Step Debug] -> - -[370] [Step Debug] <- run -i 10 -[353] Log opened at 2024-10-17 19:45:08.509921 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] -> - -[327] Log opened at 2024-10-17 19:45:08.512516 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[353] [Step Debug] -> - -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[353] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[353] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[353] [Step Debug] -> - -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[327] [Step Debug] -> - -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[353] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[353] [Step Debug] -> - -[353] [Step Debug] <- run -i 10 -[327] [Step Debug] <- run -i 10 -[353] [Step Debug] -> - -[353] Log closed at 2024-10-17 19:45:09.200476 - -[370] [Step Debug] -> - -[370] Log closed at 2024-10-17 19:45:09.566516 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 19:45:09.726190 - -[353] Log opened at 2024-10-17 19:45:09.773942 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[353] [Step Debug] -> - -[353] [Step Debug] <- run -i 10 -[353] [Step Debug] -> - -[353] [Step Debug] -> - -[353] [Step Debug] <- stack_get -i 11 -[353] [Step Debug] -> - -[353] [Step Debug] <- property_get -i 12 -n "$lineas[0]" -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- property_get -i 13 -n "$data['excluirRotativa']" -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- context_names -i 14 -d 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_remove -i 16 -d 3530011 -[353] [Step Debug] -> - -[353] [Step Debug] <- run -i 17 -[353] [Step Debug] -> - -[353] Log closed at 2024-10-17 19:45:17.110319 - -[363] Log opened at 2024-10-17 19:46:03.004175 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[363] [Step Debug] -> - -[363] [Step Debug] <- run -i 10 -[363] [Step Debug] -> - -[363] [Step Debug] -> - -[363] Log closed at 2024-10-17 19:46:05.611520 - -[363] Log opened at 2024-10-17 19:46:05.776756 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[363] [Step Debug] -> - -[362] Log opened at 2024-10-17 19:46:05.801204 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[362] [Step Debug] -> - -[363] [Step Debug] <- run -i 10 -[362] [Step Debug] <- run -i 6 -[363] [Step Debug] -> - -[363] Log closed at 2024-10-17 19:46:05.981365 - -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[362] [Step Debug] -> - -[362] Log closed at 2024-10-17 19:46:06.605094 - -[362] Log opened at 2024-10-17 19:46:06.716124 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[362] [Step Debug] -> - -[363] Log opened at 2024-10-17 19:46:06.816557 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[369] Log opened at 2024-10-17 19:46:06.816484 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] -> - -[363] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[369] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[363] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[369] [Step Debug] -> - -[363] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[363] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[369] [Step Debug] -> - -[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[369] [Step Debug] -> - -[363] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[363] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[363] [Step Debug] -> - -[369] [Step Debug] -> - -[363] [Step Debug] <- run -i 6 -[369] [Step Debug] <- run -i 6 -[362] [Step Debug] <- run -i 10 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[369] [Step Debug] -> - -[369] Log closed at 2024-10-17 19:46:07.420817 - -[362] [Step Debug] -> - -[362] Log closed at 2024-10-17 19:46:07.779674 - -[363] [Step Debug] -> - -[363] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[363] [Step Debug] -> - -[363] Log closed at 2024-10-17 19:46:07.964569 - -[369] Log opened at 2024-10-17 19:46:08.014258 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[369] [Step Debug] -> - -[369] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[369] [Step Debug] -> - -[369] [Step Debug] <- run -i 10 -[369] [Step Debug] -> - -[369] [Step Debug] -> - -[369] [Step Debug] <- stack_get -i 11 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 12 -n "$lineas[0]" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 13 -n "$data['excluirRotativa']" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_names -i 14 -d 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 16 -n "$lineas[0]" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 17 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 18 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_names -i 19 -d 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 22 -n "$lineas[0]" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 23 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- step_over -i 24 -[369] [Step Debug] -> - -[369] [Step Debug] <- stack_get -i 25 -[369] [Step Debug] -> - -[369] [Step Debug] <- stack_get -i 26 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 27 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 28 -n "$data['excluirRotativa']" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_names -i 29 -d 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 31 -n "$lineas[0]" -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- property_get -i 32 -n "$lineas[0]->attributes" -p 0 -d 0 -c 0 -[369] [Step Debug] -> - -[369] [Step Debug] <- run -i 33 -[369] [Step Debug] -> - -[369] Log closed at 2024-10-17 19:48:57.978238 - -[372] Log opened at 2024-10-17 19:50:47.401563 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[372] [Step Debug] -> - -[372] [Step Debug] <- run -i 11 -[372] [Step Debug] -> - -[372] [Step Debug] -> - -[372] [Step Debug] -> - -[372] Log closed at 2024-10-17 19:50:50.177780 - -[372] Log opened at 2024-10-17 19:50:50.344873 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[372] [Step Debug] -> - -[370] Log opened at 2024-10-17 19:50:50.369120 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[372] [Step Debug] -> - -[372] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[372] [Step Debug] -> - -[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[370] [Step Debug] -> - -[372] [Step Debug] <- run -i 11 -[370] [Step Debug] <- run -i 6 -[372] [Step Debug] -> - -[372] Log closed at 2024-10-17 19:50:50.524650 - -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[370] [Step Debug] -> - -[370] Log closed at 2024-10-17 19:50:51.120561 - -[370] Log opened at 2024-10-17 19:50:51.243499 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[370] [Step Debug] -> - -[370] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[370] [Step Debug] -> - -[370] [Step Debug] <- run -i 11 -[320] Log opened at 2024-10-17 19:50:51.372120 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] Log opened at 2024-10-17 19:50:51.372820 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[371] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[371] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[371] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[371] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[371] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[371] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[371] [Step Debug] -> - -[371] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[371] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[371] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[320] [Step Debug] -> - -[371] [Step Debug] -> - -[371] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[320] [Step Debug] -> - -[371] [Step Debug] -> - -[371] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[371] [Step Debug] -> - -[371] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[371] [Step Debug] -> - -[371] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[371] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[371] [Step Debug] <- run -i 11 -[320] [Step Debug] <- run -i 11 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 19:50:52.019181 - -[370] [Step Debug] -> - -[370] Log closed at 2024-10-17 19:50:52.434210 - -[371] [Step Debug] -> - -[371] Log closed at 2024-10-17 19:50:52.593343 - -[320] Log opened at 2024-10-17 19:50:52.643027 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2240 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 11 -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 12 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 13 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 15 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- breakpoint_remove -i 17 -d 3200145 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 18 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 19 -[320] [Step Debug] -> - -[320] [Step Debug] <- stack_get -i 20 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 21 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 22 -n "$data['excluirRotativa']" -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_names -i 23 -d 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- property_get -i 25 -n "$data[\"datosGenerales\"]" -p 0 -d 0 -c 0 -[320] [Step Debug] -> - -[320] [Step Debug] <- run -i 26 -[320] [Step Debug] -> - -[320] Log closed at 2024-10-17 19:51:11.841087 - -[354] Log opened at 2024-10-17 19:51:17.303011 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[354] [Step Debug] -> - -[354] [Step Debug] <- run -i 10 -[354] [Step Debug] -> - -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:51:20.064336 - -[354] Log opened at 2024-10-17 19:51:20.302219 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[354] [Step Debug] -> - -[354] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[354] [Step Debug] -> - -[327] Log opened at 2024-10-17 19:51:20.309915 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[354] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[354] [Step Debug] -> - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[354] [Step Debug] -> - -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[354] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1 -[327] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[354] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[354] [Step Debug] -> - -[354] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[354] [Step Debug] -> - -[354] [Step Debug] <- run -i 10 -[327] [Step Debug] <- run -i 10 -[354] [Step Debug] -> - -[354] Log closed at 2024-10-17 19:51:20.505337 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 19:51:21.072924 - -[327] Log opened at 2024-10-17 19:51:21.168470 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[327] [Step Debug] -> - -[327] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[327] [Step Debug] -> - -[327] [Step Debug] <- run -i 10 -[353] Log opened at 2024-10-17 19:51:21.291825 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:51:21.291819 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] -> - -[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[362] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[353] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[353] [Step Debug] -> - -[362] [Step Debug] -> - -[353] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[353] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[353] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[362] [Step Debug] -> - -[353] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[353] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[362] [Step Debug] -> - -[353] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[353] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[362] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[353] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[353] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[353] [Step Debug] -> - -[362] [Step Debug] -> - -[353] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[353] [Step Debug] -> - -[362] [Step Debug] -> - -[353] [Step Debug] <- run -i 10 -[362] [Step Debug] <- run -i 10 -[362] [Step Debug] -> - -[362] Log closed at 2024-10-17 19:51:22.013500 - -[327] [Step Debug] -> - -[327] Log closed at 2024-10-17 19:51:22.411325 - -[353] [Step Debug] -> - -[353] Log closed at 2024-10-17 19:51:22.564316 - -[362] Log opened at 2024-10-17 19:51:22.613395 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 926 -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[362] [Step Debug] -> - -[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 10 -[362] [Step Debug] -> - -[362] [Step Debug] -> - -[362] [Step Debug] <- stack_get -i 11 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 12 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 13 -n "$data['excluirRotativa']" -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_names -i 14 -d 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- property_get -i 16 -n "$data[\"datosGenerales\"]" -p 0 -d 0 -c 0 -[362] [Step Debug] -> - -[362] [Step Debug] <- run -i 17 -[362] [Step Debug] -> - -[362] Log closed at 2024-10-17 19:51:31.823910 - -[372] Log opened at 2024-10-17 19:58:50.433202 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 19:58:53.363072 - -[372] Log opened at 2024-10-17 19:58:53.592681 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] Log opened at 2024-10-17 19:58:53.617649 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 19:58:54.275120 - -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:58:54.943424 - -[371] Log opened at 2024-10-17 19:58:55.004623 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 19:58:55.144980 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 19:58:55.147442 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:58:56.305562 - -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 19:58:57.060549 - -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 19:58:57.429150 - -[320] Log opened at 2024-10-17 19:58:57.473137 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 19:58:58.787536 - -[369] Log opened at 2024-10-17 19:59:18.560752 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:59:21.665335 - -[369] Log opened at 2024-10-17 19:59:21.918437 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] Log opened at 2024-10-17 19:59:21.926782 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 19:59:22.601179 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:59:23.315766 - -[354] Log opened at 2024-10-17 19:59:23.373138 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] Log opened at 2024-10-17 19:59:23.525314 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 19:59:23.527792 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:59:24.657317 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 19:59:25.429997 - -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 19:59:25.793001 - -[353] Log opened at 2024-10-17 19:59:25.847919 -[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[353] Log closed at 2024-10-17 19:59:27.132163 - -[371] Log opened at 2024-10-17 20:00:10.076994 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:00:13.159745 - -[371] Log opened at 2024-10-17 20:00:13.408727 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] Log opened at 2024-10-17 20:00:13.416545 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:00:14.092618 - -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 20:00:14.736124 - -[372] Log opened at 2024-10-17 20:00:14.803815 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 20:00:14.934076 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 20:00:14.933968 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:00:16.130586 - -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 20:00:16.870157 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 20:00:17.240093 - -[327] Log opened at 2024-10-17 20:00:17.285475 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:00:18.591934 - -[354] Log opened at 2024-10-17 20:00:59.273721 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 20:01:02.020236 - -[354] Log opened at 2024-10-17 20:01:02.207466 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] Log opened at 2024-10-17 20:01:02.212366 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 20:01:02.876649 - -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 20:01:03.439396 - -[354] Log opened at 2024-10-17 20:01:03.659434 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] Log opened at 2024-10-17 20:01:03.767518 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[369] Log opened at 2024-10-17 20:01:03.767605 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 20:01:04.958331 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 20:01:05.735104 - -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 20:01:06.104695 - -[370] Log opened at 2024-10-17 20:01:06.158730 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 20:01:07.475053 - -[371] Log opened at 2024-10-17 20:01:54.049485 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:01:56.972606 - -[371] Log opened at 2024-10-17 20:01:57.281530 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 20:01:57.285073 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:01:57.956915 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 20:01:58.526128 - -[371] Log opened at 2024-10-17 20:01:58.638692 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log opened at 2024-10-17 20:01:58.869218 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 20:01:58.900208 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 20:01:59.987122 - -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:02:00.770727 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 20:02:01.135896 - -[363] Log opened at 2024-10-17 20:02:01.182741 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 20:02:02.426292 - -[362] Log opened at 2024-10-17 20:02:07.844831 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 20:02:10.736456 - -[362] Log opened at 2024-10-17 20:02:10.995574 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 20:02:11.081612 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 20:02:11.677078 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:02:12.417610 - -[354] Log opened at 2024-10-17 20:02:12.585474 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] Log opened at 2024-10-17 20:02:12.698625 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] Log opened at 2024-10-17 20:02:12.728040 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 20:02:13.887000 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 20:02:14.649210 - -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 20:02:15.016793 - -[370] Log opened at 2024-10-17 20:02:15.066935 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 20:02:16.280024 - -[320] Log opened at 2024-10-17 20:04:29.939037 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 20:04:32.798749 - -[320] Log opened at 2024-10-17 20:04:33.072297 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] Log opened at 2024-10-17 20:04:33.089719 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 20:04:33.769136 - -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 20:04:34.511510 - -[320] Log opened at 2024-10-17 20:04:34.641119 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log opened at 2024-10-17 20:04:34.924724 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[363] Log opened at 2024-10-17 20:04:34.924717 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 20:04:36.270653 - -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 20:04:37.031978 - -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 20:04:37.404474 - -[363] Log opened at 2024-10-17 20:04:37.519455 -[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[363] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[363] Log closed at 2024-10-17 20:04:38.840058 - -[354] Log opened at 2024-10-17 20:05:32.941901 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 20:05:35.866444 - -[354] Log opened at 2024-10-17 20:05:36.167303 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 20:05:36.176811 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 20:05:36.840064 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:05:37.420398 - -[354] Log opened at 2024-10-17 20:05:37.662957 -[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 20:05:37.835940 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] Log opened at 2024-10-17 20:05:37.844021 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:05:39.058696 - -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[354] Log closed at 2024-10-17 20:05:39.812626 - -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:05:40.206365 - -[327] Log opened at 2024-10-17 20:05:40.309071 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:05:41.622338 - -[369] Log opened at 2024-10-17 20:07:50.485588 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 20:07:53.366131 - -[369] Log opened at 2024-10-17 20:07:53.743900 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[373] Log opened at 2024-10-17 20:07:53.829756 -[373] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.373' -[373] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[373] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 20:07:54.441620 - -[373] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[373] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[373] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[373] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[373] Log closed at 2024-10-17 20:07:55.267863 - -[370] Log opened at 2024-10-17 20:07:55.434332 -[370] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.370' -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] Log opened at 2024-10-17 20:07:55.576088 -[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] Log opened at 2024-10-17 20:07:55.577226 -[320] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.320' -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[369] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[369] Log closed at 2024-10-17 20:07:56.854538 - -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[370] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[370] Log closed at 2024-10-17 20:07:57.596386 - -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[320] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[320] Log closed at 2024-10-17 20:07:57.959797 - -[372] Log opened at 2024-10-17 20:07:58.066918 -[372] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.372' -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[372] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[372] Log closed at 2024-10-17 20:07:59.386412 - -[371] Log opened at 2024-10-17 20:08:28.938437 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:08:32.186215 - -[371] Log opened at 2024-10-17 20:08:32.454446 -[371] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.371' -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] Log opened at 2024-10-17 20:08:32.468057 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[371] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[371] Log closed at 2024-10-17 20:08:33.149621 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:08:33.864360 - -[327] Log opened at 2024-10-17 20:08:33.939125 -[327] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.327' -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] Log opened at 2024-10-17 20:08:34.061154 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[374] Log opened at 2024-10-17 20:08:34.083972 -[374] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.374' -[374] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[374] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 20:08:35.246726 - -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[374] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[327] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[327] Log closed at 2024-10-17 20:08:36.000835 - -[374] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[374] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[374] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[374] Log closed at 2024-10-17 20:08:36.356784 - -[362] Log opened at 2024-10-17 20:08:36.429742 -[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[362] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[362] Log closed at 2024-10-17 20:08:37.737396 - -[26] Log opened at 2024-10-18 07:21:11.148156 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 07:21:12.150553 - -[36] Log opened at 2024-10-18 07:21:12.208398 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-18 07:21:12.847747 - -[34] Log opened at 2024-10-18 07:21:13.031684 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-18 07:21:13.848173 - -[26] Log opened at 2024-10-18 07:21:14.629695 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 07:21:15.876790 - -[26] Log opened at 2024-10-18 07:21:15.881880 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 07:21:16.905359 - -[34] Log opened at 2024-10-18 07:21:16.948936 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-18 07:21:17.579654 - -[34] Log opened at 2024-10-18 07:21:17.623598 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] Log opened at 2024-10-18 07:21:17.635958 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-18 07:21:18.439544 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-18 07:21:19.182277 - -[31] Log opened at 2024-10-18 07:21:22.187251 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-18 07:21:23.264473 - -[31] Log opened at 2024-10-18 07:21:23.309318 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-18 07:21:23.937183 - -[37] Log opened at 2024-10-18 07:21:24.026891 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] Log opened at 2024-10-18 07:21:24.026980 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] Log opened at 2024-10-18 07:21:24.072302 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-18 07:21:24.807998 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-18 07:21:25.540418 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:21:25.979121 - -[30] Log opened at 2024-10-18 07:21:30.456385 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:21:32.655663 - -[30] Log opened at 2024-10-18 07:21:32.700415 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] Log opened at 2024-10-18 07:21:32.709766 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:21:33.329480 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-18 07:21:33.727549 - -[30] Log opened at 2024-10-18 07:21:33.751344 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] Log opened at 2024-10-18 07:21:33.752377 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] Log opened at 2024-10-18 07:21:33.751641 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-18 07:21:34.617720 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:21:35.323165 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-18 07:21:35.660732 - -[33] Log opened at 2024-10-18 07:21:35.684537 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-18 07:21:36.718008 - -[31] Log opened at 2024-10-18 07:26:59.295419 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-18 07:27:00.198947 - -[31] Log opened at 2024-10-18 07:27:00.206454 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-18 07:27:01.070909 - -[26] Log opened at 2024-10-18 07:27:14.880707 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 07:27:17.102306 - -[26] Log opened at 2024-10-18 07:27:17.191480 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] Log opened at 2024-10-18 07:27:17.192790 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 07:27:17.820615 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-18 07:27:18.209257 - -[36] Log opened at 2024-10-18 07:27:18.321640 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] Log opened at 2024-10-18 07:27:18.333679 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] Log opened at 2024-10-18 07:27:18.339542 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-18 07:27:19.192059 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-18 07:27:19.904240 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-18 07:27:20.242100 - -[33] Log opened at 2024-10-18 07:27:20.272009 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-18 07:27:21.333086 - -[37] Log opened at 2024-10-18 07:36:53.436461 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-18 07:36:54.340663 - -[30] Log opened at 2024-10-18 07:36:54.429889 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:36:55.308863 - -[31] Log opened at 2024-10-18 07:37:09.049714 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-18 07:37:11.230477 - -[31] Log opened at 2024-10-18 07:37:11.283613 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] Log opened at 2024-10-18 07:37:11.291435 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-18 07:37:11.911770 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-18 07:37:12.314948 - -[38] Log opened at 2024-10-18 07:37:12.369562 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] Log opened at 2024-10-18 07:37:12.390380 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 07:37:12.392098 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-18 07:37:13.221336 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-18 07:37:13.944590 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 07:37:14.280408 - -[36] Log opened at 2024-10-18 07:37:14.301652 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-18 07:37:15.410239 - -[33] Log opened at 2024-10-18 07:37:35.834629 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-18 07:37:37.980159 - -[33] Log opened at 2024-10-18 07:37:38.059185 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] Log opened at 2024-10-18 07:37:38.060724 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-18 07:37:38.687755 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-18 07:37:39.085740 - -[37] Log opened at 2024-10-18 07:37:39.108361 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] Log opened at 2024-10-18 07:37:39.156431 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] Log opened at 2024-10-18 07:37:39.157088 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:37:39.988192 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-18 07:37:40.708616 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-18 07:37:41.050001 - -[30] Log opened at 2024-10-18 07:37:41.078877 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:37:42.154817 - -[26] Log opened at 2024-10-18 07:38:47.273104 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 07:38:48.265883 - -[28] Log opened at 2024-10-18 07:40:11.229699 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 07:40:13.390491 - -[28] Log opened at 2024-10-18 07:40:13.467167 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 07:40:13.468970 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 07:40:14.097074 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 07:40:14.484878 - -[27] Log opened at 2024-10-18 07:40:14.535926 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] Log opened at 2024-10-18 07:40:14.554396 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[38] Log opened at 2024-10-18 07:40:14.554463 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-18 07:40:15.382301 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-18 07:40:16.104582 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-18 07:40:16.443296 - -[37] Log opened at 2024-10-18 07:40:16.470831 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-18 07:40:17.564842 - -[39] Log opened at 2024-10-18 07:40:25.304668 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-18 07:40:27.486658 - -[39] Log opened at 2024-10-18 07:40:27.573161 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] Log opened at 2024-10-18 07:40:27.574935 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-18 07:40:28.203990 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:40:28.587251 - -[30] Log opened at 2024-10-18 07:40:28.614142 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 07:40:28.668115 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] Log opened at 2024-10-18 07:40:28.668399 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-18 07:40:29.501264 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-18 07:40:30.224463 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 07:40:30.557403 - -[40] Log opened at 2024-10-18 07:40:30.582363 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-18 07:40:31.680241 - -[31] Log opened at 2024-10-18 07:40:53.427837 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 2 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 3 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 4 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 5 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 134 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x * -[31] [Step Debug] -> - -[31] [Step Debug] <- run -i 10 -[31] [Step Debug] -> - -[31] [Step Debug] <- stack_get -i 11 -[31] [Step Debug] -> - -[31] [Step Debug] <- context_names -i 12 -d 0 -[31] [Step Debug] -> - -[31] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[31] [Step Debug] -> - -[31] [Step Debug] <- context_get -i 14 -d 0 -c 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- context_get -i 15 -d 0 -c 2 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 16 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_remove -i 17 -d 310003 -[31] [Step Debug] -> - -[31] [Step Debug] <- run -i 18 -[31] [Step Debug] -> - -[31] [Step Debug] <- stop -i 19 -[31] [Step Debug] -> - -[31] Log closed at 2024-10-18 07:41:05.600840 - -[31] Log opened at 2024-10-18 07:41:05.671681 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] -> - -[38] Log opened at 2024-10-18 07:41:05.673018 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 1 -[38] [Step Debug] <- breakpoint_list -i 1 -[38] [Step Debug] -> - -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 2 -[38] [Step Debug] <- breakpoint_list -i 2 -[31] [Step Debug] -> - -[38] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 3 -[31] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 3 -[38] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 4 -[31] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 4 -[31] [Step Debug] <- breakpoint_list -i 5 -[38] [Step Debug] -> - -[31] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 5 -[31] [Step Debug] <- breakpoint_list -i 6 -[38] [Step Debug] -> - -[31] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 6 -[38] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 7 -[38] [Step Debug] <- breakpoint_list -i 7 -[31] [Step Debug] -> - -[38] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 8 -[38] [Step Debug] <- breakpoint_list -i 8 -[31] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[31] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[38] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[31] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x * -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x * -[38] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x * -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x * -[31] [Step Debug] -> - -[38] [Step Debug] <- run -i 15 -[31] [Step Debug] <- run -i 15 -[31] [Step Debug] -> - -[31] [Step Debug] <- stop -i 16 -[31] [Step Debug] -> - -[31] Log closed at 2024-10-18 07:41:05.760620 - -[38] [Step Debug] -> - -[38] [Step Debug] <- stop -i 16 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-18 07:41:06.156545 - -[38] Log opened at 2024-10-18 07:41:06.175597 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 2 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 3 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 4 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[38] [Step Debug] -> - -[37] Log opened at 2024-10-18 07:41:06.230900 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[30] Log opened at 2024-10-18 07:41:06.232065 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[37] [Step Debug] <- run -i 1 -[30] [Step Debug] <- run -i 1 -[38] [Step Debug] <- run -i 8 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 3 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 4 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 5 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 6 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 7 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 8 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 9 -[37] [Step Debug] -> - -[37] [Step Debug] <- stop -i 10 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-18 07:41:06.463183 - -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 2 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 3 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 4 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 5 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 6 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 7 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 8 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_list -i 9 -[30] [Step Debug] -> - -[30] [Step Debug] <- stop -i 10 -[30] [Step Debug] -> - -[30] Log closed at 2024-10-18 07:41:06.598506 - -[37] Log opened at 2024-10-18 07:41:06.621024 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 3 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 4 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[37] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 9 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 10 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 11 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 12 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 13 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 14 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 15 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 16 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 17 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 18 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 19 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 20 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 21 -d 380005 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 22 -d 380006 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 23 -d 380007 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 24 -d 380005 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 25 -d 380006 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 26 -d 380007 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 27 -d 380005 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 28 -d 380006 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 29 -d 380007 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 32 -t exception -x * -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 33 -[38] [Step Debug] -> - -[37] [Step Debug] <- run -i 8 -[38] [Step Debug] <- context_names -i 34 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 35 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 36 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 37 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 38 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 39 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 40 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 41 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 42 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 43 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 44 -[38] [Step Debug] -> - -[38] [Step Debug] <- stop -i 45 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-18 07:41:21.411824 - -[37] [Step Debug] -> - -[37] [Step Debug] <- stack_get -i 9 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 10 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 11 -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 12 -d 0 -c 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 13 -d 0 -c 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 14 -d 0 -c 0 -n "$builder" -[37] [Step Debug] -> - -[37] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 16 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 18 -d 0 -c 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 19 -d 0 -c 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 20 -[37] [Step Debug] -> - -[37] [Step Debug] <- stack_get -i 21 -[37] [Step Debug] -> - -[37] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 23 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 25 -[37] [Step Debug] -> - -[37] [Step Debug] <- stop -i 26 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-18 07:42:51.633974 - -[37] Log opened at 2024-10-18 07:42:55.660932 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 3 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 4 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 8 -[37] [Step Debug] -> - -[37] [Step Debug] <- stop -i 9 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-18 07:42:57.320072 - -[37] Log opened at 2024-10-18 07:42:57.398997 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 3 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 4 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[37] [Step Debug] -> - -[27] Log opened at 2024-10-18 07:42:57.409692 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 1 -[37] [Step Debug] <- run -i 8 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 9 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 10 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 11 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 12 -[37] [Step Debug] -> - -[37] [Step Debug] <- stop -i 13 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-18 07:42:57.455490 - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 2 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 3 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 4 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 5 -[27] [Step Debug] -> - -[27] [Step Debug] <- stop -i 6 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-18 07:42:57.844079 - -[37] Log opened at 2024-10-18 07:42:57.903474 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 3 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 4 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[37] [Step Debug] -> - -[40] Log opened at 2024-10-18 07:42:57.914647 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[27] Log opened at 2024-10-18 07:42:57.914646 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] -> - -[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[37] [Step Debug] <- run -i 8 -[27] [Step Debug] <- run -i 1 -[40] [Step Debug] <- run -i 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 2 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 3 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 4 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 5 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 6 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 7 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 8 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_list -i 9 -[27] [Step Debug] -> - -[27] [Step Debug] <- stop -i 10 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-18 07:42:58.185702 - -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 9 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 10 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 11 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 12 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 13 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 14 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 15 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 16 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_remove -i 17 -d 370010 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_remove -i 18 -d 370011 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_remove -i 19 -d 370012 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_remove -i 20 -d 370010 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_remove -i 21 -d 370011 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_remove -i 22 -d 370012 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 25 -t exception -x * -[37] [Step Debug] -> - -[37] [Step Debug] <- stack_get -i 26 -[37] [Step Debug] -> - -[37] [Step Debug] <- eval -i 27 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 28 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 29 -[37] [Step Debug] -> - -[37] [Step Debug] <- stack_get -i 30 -[37] [Step Debug] -> - -[37] [Step Debug] <- eval -i 31 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 32 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 33 -[37] [Step Debug] -> - -[37] [Step Debug] <- stack_get -i 34 -[37] [Step Debug] -> - -[37] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 36 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 37 -[37] [Step Debug] -> - -[37] [Step Debug] <- stack_get -i 38 -[37] [Step Debug] -> - -[37] [Step Debug] <- eval -i 39 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 40 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 41 -[37] [Step Debug] -> - -[37] [Step Debug] <- stop -i 42 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-18 07:43:03.353967 - -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 2 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 3 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 4 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 5 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 6 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 7 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 8 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 9 -[40] [Step Debug] -> - -[40] [Step Debug] <- stop -i 10 -[40] [Step Debug] -> - -[40] Log closed at 2024-10-18 07:43:03.486867 - -[40] Log opened at 2024-10-18 07:43:03.520942 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[40] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 1 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 2 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 3 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 4 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 132 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[40] [Step Debug] -> - -[40] [Step Debug] <- run -i 8 -[40] [Step Debug] -> - -[40] [Step Debug] <- stack_get -i 9 -[40] [Step Debug] -> - -[40] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[40] [Step Debug] -> - -[40] [Step Debug] <- context_names -i 11 -d 0 -[40] [Step Debug] -> - -[40] [Step Debug] <- context_get -i 12 -d 0 -c 0 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_list -i 13 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_remove -i 14 -d 400002 -[40] [Step Debug] -> - -[40] [Step Debug] <- run -i 15 -[40] [Step Debug] -> - -[40] [Step Debug] <- stack_get -i 16 -[40] [Step Debug] -> - -[40] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[40] [Step Debug] -> - -[40] [Step Debug] <- context_names -i 18 -d 0 -[40] [Step Debug] -> - -[40] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[40] [Step Debug] -> - -[40] [Step Debug] <- run -i 20 -[40] [Step Debug] -> - -[40] [Step Debug] <- stop -i 21 -[40] [Step Debug] -> - -[40] Log closed at 2024-10-18 07:43:41.121639 - -[38] Log opened at 2024-10-18 07:48:51.912101 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 2 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 3 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 4 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 8 -[38] [Step Debug] -> - -[38] [Step Debug] <- stop -i 9 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-18 07:48:53.576542 - -[38] Log opened at 2024-10-18 07:48:53.655108 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[36] Log opened at 2024-10-18 07:48:53.656766 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 1 -[38] [Step Debug] <- breakpoint_list -i 1 -[38] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 2 -[38] [Step Debug] <- breakpoint_list -i 2 -[36] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 3 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 4 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 5 -[38] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 3 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 4 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 5 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 6 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 7 -[36] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 6 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 7 -[38] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 8 -[38] [Step Debug] <- breakpoint_list -i 8 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[36] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[38] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x * -[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x * -[36] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[36] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[38] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[36] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[38] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x * -[36] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x * -[38] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[38] [Step Debug] <- run -i 15 -[38] [Step Debug] -> - -[38] [Step Debug] <- stop -i 16 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-18 07:48:53.739022 - -[36] [Step Debug] -> - -[36] [Step Debug] <- stop -i 16 -[36] [Step Debug] -> - -[36] Log closed at 2024-10-18 07:48:54.125969 - -[36] Log opened at 2024-10-18 07:48:54.148241 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[36] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 2 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 3 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 4 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[36] [Step Debug] -> - -[41] Log opened at 2024-10-18 07:48:54.195882 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 07:48:54.195938 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[41] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] -> - -[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[41] [Step Debug] <- run -i 1 -[36] [Step Debug] <- run -i 8 -[28] [Step Debug] <- run -i 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 2 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 3 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 4 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 5 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 6 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 7 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 8 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_list -i 9 -[41] [Step Debug] -> - -[41] [Step Debug] <- stop -i 10 -[41] [Step Debug] -> - -[41] Log closed at 2024-10-18 07:48:54.435607 - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 9 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 10 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 11 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 12 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 13 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 14 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 15 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 16 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 17 -d 360005 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 18 -d 360006 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 19 -d 360007 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 20 -d 360005 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 21 -d 360006 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 22 -d 360007 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 25 -t exception -x * -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 26 -[36] [Step Debug] -> - -[36] [Step Debug] <- eval -i 27 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 28 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_list -i 29 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 30 -d 360008 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 31 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 32 -[36] [Step Debug] -> - -[36] [Step Debug] <- eval -i 33 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 34 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 35 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 36 -[36] [Step Debug] -> - -[36] [Step Debug] <- eval -i 37 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 38 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 39 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 40 -[36] [Step Debug] -> - -[36] [Step Debug] <- eval -i 41 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 42 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 43 -[36] [Step Debug] -> - -[36] [Step Debug] <- stop -i 44 -[36] [Step Debug] -> - -[36] Log closed at 2024-10-18 07:49:06.608287 - -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 2 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 3 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 4 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 5 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 6 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 7 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 8 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 9 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 10 -[28] [Step Debug] -> - -[28] [Step Debug] <- stop -i 11 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-18 07:49:06.746434 - -[28] Log opened at 2024-10-18 07:49:06.774266 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 2 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 3 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2249 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 6 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 7 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 9 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 10 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- step_over -i 11 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 12 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 13 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 14 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 15 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- step_over -i 17 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 18 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 19 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 20 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- step_over -i 22 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 23 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 25 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- step_over -i 27 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 28 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 30 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- step_over -i 32 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 33 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 34 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 36 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 37 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- step_over -i 38 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 39 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 40 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 41 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 42 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 43 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_remove -i 44 -d 280001 -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 45 -[28] [Step Debug] -> - -[28] [Step Debug] <- stop -i 46 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-18 07:50:09.250095 - -[39] Log opened at 2024-10-18 07:50:26.456700 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 2 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x * -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 4 -[39] [Step Debug] -> - -[39] [Step Debug] <- stop -i 5 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-18 07:50:28.070757 - -[39] Log opened at 2024-10-18 07:50:28.176635 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 2 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x * -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 4 -[26] Log opened at 2024-10-18 07:50:28.220992 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 2 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 3 -t exception -x * -[26] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 5 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 6 -[39] [Step Debug] -> - -[39] [Step Debug] <- stop -i 7 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-18 07:50:28.246659 - -[37] Log opened at 2024-10-18 07:50:51.948220 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[28] Log opened at 2024-10-18 07:50:51.948200 -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 1 -[26] [Step Debug] <- breakpoint_list -i 4 -[28] [Step Debug] -> - -[26] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 1 -[37] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 2 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 3 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 4 -[28] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 5 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 6 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 7 -[26] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 3 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 4 -[37] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[28] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_remove -i 8 -d 260001 -[26] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[37] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t exception -x * -[28] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t exception -x * -[26] [Step Debug] <- breakpoint_remove -i 9 -d 260001 -[37] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 11 -[37] [Step Debug] <- run -i 7 -[28] [Step Debug] <- run -i 7 -[37] [Step Debug] -> - -[37] [Step Debug] <- stop -i 8 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-18 07:50:52.208658 - -[28] [Step Debug] -> - -[28] [Step Debug] <- stop -i 8 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-18 07:50:53.517646 - -[37] Log opened at 2024-10-18 07:50:53.600196 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 2 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 3 -t exception -x * -[37] [Step Debug] -> - -[31] Log opened at 2024-10-18 07:50:53.641063 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[31] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 4 -[31] [Step Debug] <- breakpoint_list -i 1 -[31] [Step Debug] -> - -[37] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_list -i 2 -[31] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_list -i 5 -[37] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 3 -t exception -x * -[31] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_remove -i 6 -d 370018 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[37] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 12 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 13 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 14 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 15 -[26] [Step Debug] -> - -[26] [Step Debug] <- stop -i 16 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-18 07:50:53.716966 - -[37] [Step Debug] <- stop -i 8 -[37] [Step Debug] -> - -[31] [Step Debug] <- stop -i 4 -[31] [Step Debug] -> - -[38] Log opened at 2024-10-18 07:50:55.595663 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] Log opened at 2024-10-18 07:50:55.596756 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-18 07:50:56.224568 - -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-18 07:50:56.608975 - -[42] Log opened at 2024-10-18 07:50:56.632909 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] Log opened at 2024-10-18 07:50:56.687861 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] Log opened at 2024-10-18 07:50:56.692068 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-18 07:50:57.518814 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 07:50:58.219272 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-18 07:50:58.552446 - -[38] Log opened at 2024-10-18 07:50:58.577691 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-18 07:50:59.674168 - -[38] Log opened at 2024-10-18 07:51:04.557120 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-18 07:51:05.549753 - -[44] Log opened at 2024-10-18 07:55:58.744973 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-18 07:56:01.061776 - -[44] Log opened at 2024-10-18 07:56:01.179737 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] Log opened at 2024-10-18 07:56:01.219196 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-18 07:56:01.809641 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-18 07:56:02.241843 - -[45] Log opened at 2024-10-18 07:56:02.306822 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 07:56:02.325407 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] Log opened at 2024-10-18 07:56:02.326273 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 07:56:03.174519 - -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 07:56:03.887736 - -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 07:56:04.228923 - -[28] Log opened at 2024-10-18 07:56:04.252723 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 07:56:05.350961 - -[39] Log opened at 2024-10-18 07:58:46.173099 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 2 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 3 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 6 -[39] [Step Debug] -> - -[39] [Step Debug] <- stop -i 7 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-18 07:58:47.854044 - -[38] Log opened at 2024-10-18 07:58:47.949271 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] Log opened at 2024-10-18 07:58:47.950899 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[39] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 1 -[39] [Step Debug] <- breakpoint_list -i 1 -[39] [Step Debug] -> - -[38] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 2 -[38] [Step Debug] <- breakpoint_list -i 2 -[38] [Step Debug] -> - -[39] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 3 -[39] [Step Debug] <- breakpoint_list -i 3 -[38] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 4 -[38] [Step Debug] <- breakpoint_list -i 4 -[39] [Step Debug] -> - -[38] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 5 -[38] [Step Debug] <- breakpoint_list -i 5 -[39] [Step Debug] -> - -[38] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_list -i 6 -[38] [Step Debug] <- breakpoint_list -i 6 -[39] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[38] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[39] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[38] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[39] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[38] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[39] [Step Debug] -> - -[38] [Step Debug] <- run -i 11 -[39] [Step Debug] <- run -i 11 -[38] [Step Debug] -> - -[38] [Step Debug] <- stop -i 12 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-18 07:58:48.037150 - -[39] [Step Debug] -> - -[39] [Step Debug] <- stop -i 12 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-18 07:58:48.428607 - -[26] Log opened at 2024-10-18 07:58:48.481602 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 2 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 3 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[26] [Step Debug] -> - -[38] Log opened at 2024-10-18 07:58:48.497565 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[47] Log opened at 2024-10-18 07:58:48.498073 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[26] [Step Debug] <- run -i 6 -[38] [Step Debug] <- run -i 1 -[47] [Step Debug] <- run -i 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 2 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 3 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 4 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 5 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 6 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_list -i 7 -[38] [Step Debug] -> - -[38] [Step Debug] <- stop -i 8 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-18 07:58:48.731612 - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 7 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 8 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 9 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 10 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 11 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 12 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_remove -i 13 -d 260003 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_remove -i 14 -d 260004 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_remove -i 15 -d 260003 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_remove -i 16 -d 260004 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 18 -t exception -x * -[26] [Step Debug] -> - -[26] [Step Debug] <- stack_get -i 19 -[26] [Step Debug] -> - -[26] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[26] [Step Debug] -> - -[26] [Step Debug] <- context_names -i 21 -d 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 22 -[26] [Step Debug] -> - -[26] [Step Debug] <- stack_get -i 23 -[26] [Step Debug] -> - -[26] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[26] [Step Debug] -> - -[26] [Step Debug] <- context_names -i 25 -d 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 26 -[26] [Step Debug] -> - -[26] [Step Debug] <- stack_get -i 27 -[26] [Step Debug] -> - -[26] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[26] [Step Debug] -> - -[26] [Step Debug] <- context_names -i 29 -d 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 30 -[26] [Step Debug] -> - -[26] [Step Debug] <- stack_get -i 31 -[26] [Step Debug] -> - -[26] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[26] [Step Debug] -> - -[26] [Step Debug] <- context_names -i 33 -d 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 34 -[26] [Step Debug] -> - -[26] [Step Debug] <- stop -i 35 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-18 07:58:54.445230 - -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 2 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 3 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 4 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 5 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 6 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 7 -[47] [Step Debug] -> - -[47] [Step Debug] <- stop -i 8 -[47] [Step Debug] -> - -[47] Log closed at 2024-10-18 07:58:54.577621 - -[47] Log opened at 2024-10-18 07:58:54.603353 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 2 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 3 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 6 -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 7 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 9 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 10 -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 11 -d 0 -c 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 12 -d 0 -c 2 -[47] [Step Debug] -> - -[47] [Step Debug] <- step_over -i 13 -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 14 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 16 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 18 -d 0 -c 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 19 -d 0 -c 2 -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 20 -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 21 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 23 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 25 -[47] [Step Debug] -> - -[47] [Step Debug] <- stop -i 26 -[47] [Step Debug] -> - -[47] Log closed at 2024-10-18 07:59:28.465252 - -[45] Log opened at 2024-10-18 07:59:30.931465 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 1 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 2 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 3 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[45] [Step Debug] -> - -[45] [Step Debug] <- run -i 6 -[45] [Step Debug] -> - -[45] [Step Debug] <- stop -i 7 -[45] [Step Debug] -> - -[45] Log closed at 2024-10-18 07:59:32.540957 - -[45] Log opened at 2024-10-18 07:59:32.646865 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 1 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 2 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 3 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[45] [Step Debug] -> - -[43] Log opened at 2024-10-18 07:59:32.687191 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[43] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] -> - -[45] [Step Debug] <- run -i 6 -[43] [Step Debug] <- run -i 1 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 7 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 8 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 9 -[45] [Step Debug] -> - -[45] [Step Debug] <- stop -i 10 -[45] [Step Debug] -> - -[45] Log closed at 2024-10-18 07:59:32.726226 - -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_list -i 2 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_list -i 3 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_list -i 4 -[43] [Step Debug] -> - -[43] [Step Debug] <- stop -i 5 -[43] [Step Debug] -> - -[43] Log closed at 2024-10-18 07:59:33.118784 - -[44] Log opened at 2024-10-18 07:59:33.144794 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 2 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 3 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[44] [Step Debug] -> - -[44] [Step Debug] <- run -i 6 -[28] Log opened at 2024-10-18 07:59:33.211109 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[46] Log opened at 2024-10-18 07:59:33.211313 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 1 -[28] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 1 -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 2 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 3 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 4 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 5 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 6 -[28] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 2 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 3 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 4 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 5 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 6 -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[28] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[28] [Step Debug] -> - -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[46] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[28] [Step Debug] -> - -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 7 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 8 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 9 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 10 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 11 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 12 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_remove -i 13 -d 440001 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_remove -i 14 -d 440002 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_remove -i 15 -d 440001 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_remove -i 16 -d 440002 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 18 -t exception -x * -[44] [Step Debug] -> - -[28] [Step Debug] <- run -i 11 -[46] [Step Debug] <- run -i 11 -[44] [Step Debug] <- stack_get -i 19 -[44] [Step Debug] -> - -[44] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[44] [Step Debug] -> - -[44] [Step Debug] <- context_names -i 21 -d 0 -[44] [Step Debug] -> - -[44] [Step Debug] <- run -i 22 -[44] [Step Debug] -> - -[44] [Step Debug] <- stack_get -i 23 -[44] [Step Debug] -> - -[44] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[44] [Step Debug] -> - -[44] [Step Debug] <- context_names -i 25 -d 0 -[44] [Step Debug] -> - -[44] [Step Debug] <- run -i 26 -[44] [Step Debug] -> - -[44] [Step Debug] <- stack_get -i 27 -[44] [Step Debug] -> - -[44] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[44] [Step Debug] -> - -[44] [Step Debug] <- context_names -i 29 -d 0 -[44] [Step Debug] -> - -[44] [Step Debug] <- run -i 30 -[44] [Step Debug] -> - -[44] [Step Debug] <- stack_get -i 31 -[44] [Step Debug] -> - -[44] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[44] [Step Debug] -> - -[44] [Step Debug] <- context_names -i 33 -d 0 -[44] [Step Debug] -> - -[44] [Step Debug] <- run -i 34 -[44] [Step Debug] -> - -[44] [Step Debug] <- stop -i 35 -[44] [Step Debug] -> - -[44] Log closed at 2024-10-18 07:59:42.337548 - -[28] [Step Debug] -> - -[28] [Step Debug] <- stop -i 12 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-18 07:59:42.538967 - -[46] [Step Debug] -> - -[46] [Step Debug] <- stop -i 12 -[46] [Step Debug] -> - -[46] Log closed at 2024-10-18 07:59:42.669027 - -[28] Log opened at 2024-10-18 07:59:42.698358 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 2 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 3 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 6 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 7 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 8 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 9 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 10 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- step_over -i 11 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 12 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 13 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 14 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 16 -d 0 -c 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 17 -d 0 -c 2 -[28] [Step Debug] -> - -[28] [Step Debug] <- property_get -i 18 -d 0 -c 0 -n "$builder" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 19 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_remove -i 20 -d 280008 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 22 -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 23 -[28] [Step Debug] -> - -[28] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 25 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 27 -[28] [Step Debug] -> - -[28] [Step Debug] <- stop -i 28 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-18 08:00:56.279666 - -[26] Log opened at 2024-10-18 08:01:08.465825 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 2 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 3 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 6 -[26] [Step Debug] -> - -[26] [Step Debug] <- stop -i 7 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-18 08:01:10.069651 - -[26] Log opened at 2024-10-18 08:01:10.160222 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[47] Log opened at 2024-10-18 08:01:10.162964 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 1 -[26] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 1 -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 2 -[47] [Step Debug] <- breakpoint_list -i 2 -[26] [Step Debug] -> - -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 3 -[26] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 3 -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 4 -[47] [Step Debug] <- breakpoint_list -i 4 -[26] [Step Debug] -> - -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 5 -[47] [Step Debug] <- breakpoint_list -i 5 -[26] [Step Debug] -> - -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_list -i 6 -[47] [Step Debug] <- breakpoint_list -i 6 -[26] [Step Debug] -> - -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[26] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[47] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[26] [Step Debug] -> - -[47] [Step Debug] <- run -i 11 -[26] [Step Debug] <- run -i 11 -[26] [Step Debug] -> - -[26] [Step Debug] <- stop -i 12 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-18 08:01:10.252300 - -[47] [Step Debug] -> - -[47] [Step Debug] <- stop -i 12 -[47] [Step Debug] -> - -[47] Log closed at 2024-10-18 08:01:10.624406 - -[47] Log opened at 2024-10-18 08:01:10.681570 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 2 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 3 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[47] [Step Debug] -> - -[45] Log opened at 2024-10-18 08:01:10.703572 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[48] Log opened at 2024-10-18 08:01:10.703680 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] -> - -[48] [Step Debug] -> - -[47] [Step Debug] <- run -i 6 -[45] [Step Debug] <- run -i 1 -[48] [Step Debug] <- run -i 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 2 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 3 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 4 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 5 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 6 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 7 -[48] [Step Debug] -> - -[48] [Step Debug] <- stop -i 8 -[48] [Step Debug] -> - -[48] Log closed at 2024-10-18 08:01:10.940934 - -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 7 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 8 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 9 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 10 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 11 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 12 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 13 -d 470006 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 14 -d 470007 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 15 -d 470006 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 16 -d 470007 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 18 -t exception -x * -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 19 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 21 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 22 -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 23 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 24 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 25 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 26 -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 27 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 28 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 29 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 30 -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 31 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 33 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 34 -[47] [Step Debug] -> - -[47] [Step Debug] <- stop -i 35 -[47] [Step Debug] -> - -[47] Log closed at 2024-10-18 08:01:22.229173 - -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 2 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 3 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 4 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 5 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 6 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 7 -[45] [Step Debug] -> - -[45] [Step Debug] <- stop -i 8 -[45] [Step Debug] -> - -[45] Log closed at 2024-10-18 08:01:22.369323 - -[45] Log opened at 2024-10-18 08:01:22.398335 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 1 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 2 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 3 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 125 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[45] [Step Debug] -> - -[45] [Step Debug] <- run -i 6 -[45] [Step Debug] -> - -[45] [Step Debug] <- stop -i 7 -[45] [Step Debug] -> - -[45] Log closed at 2024-10-18 08:01:22.931123 - -[46] Log opened at 2024-10-18 09:46:17.271549 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 1 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 2 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 3 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[46] [Step Debug] -> - -[46] [Step Debug] <- run -i 6 -[46] [Step Debug] -> - -[46] [Step Debug] <- stop -i 7 -[46] [Step Debug] -> - -[46] Log closed at 2024-10-18 09:46:19.031480 - -[46] Log opened at 2024-10-18 09:46:19.120555 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 09:46:19.121828 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[46] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] -> - -[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 1 -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 1 -[28] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 2 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 3 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 4 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 5 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_list -i 6 -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 2 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 3 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 4 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 5 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_list -i 6 -[28] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[28] [Step Debug] -> - -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[28] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[46] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[28] [Step Debug] -> - -[46] [Step Debug] <- run -i 11 -[28] [Step Debug] <- run -i 11 -[28] [Step Debug] -> - -[28] [Step Debug] <- stop -i 12 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-18 09:46:19.209815 - -[46] [Step Debug] -> - -[46] [Step Debug] <- stop -i 12 -[46] [Step Debug] -> - -[46] Log closed at 2024-10-18 09:46:19.578680 - -[47] Log opened at 2024-10-18 09:46:19.601757 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[47] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 2 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 3 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[47] [Step Debug] -> - -[45] Log opened at 2024-10-18 09:46:19.660283 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] -> - -[44] Log opened at 2024-10-18 09:46:19.661459 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[47] [Step Debug] <- run -i 6 -[45] [Step Debug] <- run -i 1 -[44] [Step Debug] <- run -i 1 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 2 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 3 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 4 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 5 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 6 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_list -i 7 -[45] [Step Debug] -> - -[45] [Step Debug] <- stop -i 8 -[45] [Step Debug] -> - -[45] Log closed at 2024-10-18 09:46:19.933980 - -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 7 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 8 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 9 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 10 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 11 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 12 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 13 -d 470010 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 14 -d 470011 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 15 -d 470010 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 16 -d 470011 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 18 -t exception -x * -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 19 -[47] [Step Debug] -> - -[47] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 21 -d 0 -[47] [Step Debug] -> - -[48] Log opened at 2024-10-18 09:46:47.492828 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[48] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 1 -[47] [Step Debug] <- breakpoint_list -i 22 -[48] [Step Debug] -> - -[47] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 2 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_list -i 3 -[48] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 23 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_list -i 24 -[47] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[48] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 25 -d 470012 -[47] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[47] [Step Debug] <- breakpoint_remove -i 26 -d 470013 -[48] [Step Debug] -> - -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 28 -t exception -x * -[47] [Step Debug] -> - -[47] [Step Debug] <- stop -i 29 -[47] [Step Debug] -> - -[48] [Step Debug] <- stop -i 6 -[48] [Step Debug] -> - -[47] [Step Debug] -> query('SELECT `chats`....', 0) -#1 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(734): CodeIgniter\Database\MySQLi\Connection->execute('SELECT `chats`....') -#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(648): CodeIgniter\Database\BaseConnection->simpleQuery('SELECT `chats`....') -#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseBuilder.php(1644): CodeIgniter\Database\BaseConnection->query('SELECT `chats`....', Array, false) -#4 /var/www/html/ci4/app/Models/Chat/ChatModel.php(362): CodeIgniter\Database\BaseBuilder->get() -#5 /var/www/html/ci4/app/Controllers/Chat/ChatController.php(240): App\Models\Chat\ChatModel->getChatInternalNotifications() -#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Chat\ChatController->get_chat_cliente('$1') -#7 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Chat\ChatController)) -#8 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false) -#9 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(325): CodeIgniter\CodeIgniter->run() -#10 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter)) -#11 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths)) -#12 {main} - thrown]]> - -[47] [Step Debug] -> query('SELECT `chats`....', 0) -#1 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(734): CodeIgniter\Database\MySQLi\Connection->execute('SELECT `chats`....') -#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseConnection.php(648): CodeIgniter\Database\BaseConnection->simpleQuery('SELECT `chats`....') -#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/Database/BaseBuilder.php(1644): CodeIgniter\Database\BaseConnection->query('SELECT `chats`....', Array, false) -#4 /var/www/html/ci4/app/Models/Chat/ChatModel.php(362): CodeIgniter\Database\BaseBuilder->get() -#5 /var/www/html/ci4/app/Controllers/Chat/ChatController.php(240): App\Models\Chat\ChatModel->getChatInternalNotifications() -#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Chat\ChatController->get_chat_cliente('$1') -#7 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Chat\ChatController)) -#8 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false) -#9 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(325): CodeIgniter\CodeIgniter->run() -#10 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter)) -#11 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths)) -#12 {main} - thrown]]> - -[47] [Step Debug] -> - -[47] Log closed at 2024-10-18 09:47:02.423246 - -[42] Log opened at 2024-10-18 09:47:02.423440 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_list -i 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_list -i 2 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_list -i 3 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[42] [Step Debug] -> - -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 2 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 3 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 4 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 5 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 6 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 7 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 8 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 9 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_list -i 10 -[44] [Step Debug] -> - -[44] [Step Debug] <- stop -i 11 -[44] [Step Debug] -> - -[44] Log closed at 2024-10-18 09:47:02.565742 - -[42] [Step Debug] <- run -i 6 -[42] [Step Debug] -> - -[42] [Step Debug] <- stop -i 7 -[42] [Step Debug] -> - -[42] Log closed at 2024-10-18 09:47:04.169323 - -[42] Log opened at 2024-10-18 09:47:04.297788 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 09:47:04.342176 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 09:47:04.927793 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 09:47:05.353876 - -[42] Log opened at 2024-10-18 09:47:05.388769 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] Log opened at 2024-10-18 09:47:05.439268 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[46] Log opened at 2024-10-18 09:47:05.444060 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-18 09:47:06.274157 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 09:47:07.006394 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-18 09:47:07.346865 - -[45] Log opened at 2024-10-18 09:47:07.378627 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 09:47:08.472907 - -[50] Log opened at 2024-10-18 10:06:26.837226 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-18 10:06:29.099416 - -[51] Log opened at 2024-10-18 10:06:29.217316 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:06:29.218399 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:06:29.853293 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-18 10:06:30.234107 - -[51] Log opened at 2024-10-18 10:06:30.258921 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] Log opened at 2024-10-18 10:06:30.328652 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 10:06:30.329116 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:06:31.186924 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-18 10:06:31.910801 - -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:06:32.245999 - -[42] Log opened at 2024-10-18 10:06:32.272008 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:06:33.348313 - -[45] Log opened at 2024-10-18 10:07:49.030462 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:07:51.205170 - -[45] Log opened at 2024-10-18 10:07:51.301308 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] Log opened at 2024-10-18 10:07:51.303629 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:07:51.930009 - -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-18 10:07:52.303565 - -[44] Log opened at 2024-10-18 10:07:52.399211 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] Log opened at 2024-10-18 10:07:52.484300 -[49] Log opened at 2024-10-18 10:07:52.484300 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-18 10:07:53.319229 - -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-18 10:07:54.036875 - -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:07:54.371927 - -[52] Log opened at 2024-10-18 10:07:54.454872 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-18 10:07:55.564275 - -[39] Log opened at 2024-10-18 10:17:45.388169 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-18 10:17:47.613444 - -[39] Log opened at 2024-10-18 10:17:47.720879 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:17:47.725306 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-18 10:17:48.350747 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:17:48.741654 - -[26] Log opened at 2024-10-18 10:17:48.772691 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 10:17:48.844297 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] Log opened at 2024-10-18 10:17:48.844303 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:17:49.691194 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:17:50.402461 - -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:17:50.741652 - -[28] Log opened at 2024-10-18 10:17:50.771825 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:17:51.858378 - -[45] Log opened at 2024-10-18 10:18:11.189486 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:18:13.368766 - -[45] Log opened at 2024-10-18 10:18:13.510103 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] Log opened at 2024-10-18 10:18:13.549121 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:18:14.139229 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:18:14.575076 - -[51] Log opened at 2024-10-18 10:18:14.658718 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:18:14.667801 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] Log opened at 2024-10-18 10:18:14.669090 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:18:15.493842 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-18 10:18:16.210463 - -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-18 10:18:16.546082 - -[26] Log opened at 2024-10-18 10:18:16.570087 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:18:17.652895 - -[28] Log opened at 2024-10-18 10:18:30.519818 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:18:32.690176 - -[28] Log opened at 2024-10-18 10:18:32.811406 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] Log opened at 2024-10-18 10:18:32.845857 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:18:33.439992 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-18 10:18:33.845427 - -[49] Log opened at 2024-10-18 10:18:33.876997 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] Log opened at 2024-10-18 10:18:33.951778 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] Log opened at 2024-10-18 10:18:33.956940 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:18:34.781976 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:18:35.494018 - -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-18 10:18:35.827439 - -[45] Log opened at 2024-10-18 10:18:35.852319 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:18:36.950992 - -[26] Log opened at 2024-10-18 10:18:48.603107 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:18:50.728108 - -[26] Log opened at 2024-10-18 10:18:50.836013 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 10:18:50.870195 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:18:51.464922 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 10:18:51.887719 - -[49] Log opened at 2024-10-18 10:18:51.914239 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:18:51.977272 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] Log opened at 2024-10-18 10:18:51.978345 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:18:52.823215 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:18:53.532390 - -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:18:53.863007 - -[53] Log opened at 2024-10-18 10:18:53.889577 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:18:54.976576 - -[45] Log opened at 2024-10-18 10:19:08.277841 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:19:10.433038 - -[45] Log opened at 2024-10-18 10:19:10.574251 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] Log opened at 2024-10-18 10:19:10.616551 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:19:11.203536 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-18 10:19:11.617728 - -[26] Log opened at 2024-10-18 10:19:11.725289 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] Log opened at 2024-10-18 10:19:11.746764 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] Log opened at 2024-10-18 10:19:11.748602 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-18 10:19:12.587955 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:19:13.308852 - -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:19:13.647775 - -[55] Log opened at 2024-10-18 10:19:13.672065 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-18 10:19:14.755241 - -[42] Log opened at 2024-10-18 10:19:45.245731 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:19:47.407906 - -[42] Log opened at 2024-10-18 10:19:47.517341 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] Log opened at 2024-10-18 10:19:47.518604 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:19:48.145790 - -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-18 10:19:48.526352 - -[44] Log opened at 2024-10-18 10:19:48.612019 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:19:48.626372 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] Log opened at 2024-10-18 10:19:48.649401 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:19:49.451191 - -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-18 10:19:50.168932 - -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:19:50.508498 - -[53] Log opened at 2024-10-18 10:19:50.537446 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:19:51.634690 - -[49] Log opened at 2024-10-18 10:20:27.272021 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:20:29.383897 - -[49] Log opened at 2024-10-18 10:20:29.484229 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] Log opened at 2024-10-18 10:20:29.486522 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:20:30.112479 - -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-18 10:20:30.497246 - -[52] Log opened at 2024-10-18 10:20:30.529160 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] Log opened at 2024-10-18 10:20:30.601868 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] Log opened at 2024-10-18 10:20:30.638947 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:20:31.427553 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-18 10:20:32.128889 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-18 10:20:32.461197 - -[54] Log opened at 2024-10-18 10:20:32.493144 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:20:33.567895 - -[26] Log opened at 2024-10-18 10:20:57.753853 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:20:59.892234 - -[26] Log opened at 2024-10-18 10:21:00.006785 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] Log opened at 2024-10-18 10:21:00.040807 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:21:00.636424 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-18 10:21:01.051522 - -[53] Log opened at 2024-10-18 10:21:01.140029 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] Log opened at 2024-10-18 10:21:01.155042 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] Log opened at 2024-10-18 10:21:01.159083 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:21:01.990567 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:21:02.709287 - -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:21:03.046484 - -[49] Log opened at 2024-10-18 10:21:03.073775 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:21:04.165853 - -[54] Log opened at 2024-10-18 10:21:23.000895 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:21:25.144014 - -[54] Log opened at 2024-10-18 10:21:25.289207 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] Log opened at 2024-10-18 10:21:25.324293 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:21:25.919187 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-18 10:21:26.359561 - -[53] Log opened at 2024-10-18 10:21:26.461777 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:21:26.527679 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] Log opened at 2024-10-18 10:21:26.553300 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:21:27.364324 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:21:28.081105 - -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-18 10:21:28.420311 - -[26] Log opened at 2024-10-18 10:21:28.447408 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:21:29.539029 - -[49] Log opened at 2024-10-18 10:22:54.326786 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:22:56.468213 - -[49] Log opened at 2024-10-18 10:22:56.622801 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] Log opened at 2024-10-18 10:22:56.662495 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-18 10:22:57.252060 - -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:22:57.663269 - -[55] Log opened at 2024-10-18 10:22:57.704048 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:22:57.773906 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] Log opened at 2024-10-18 10:22:57.776057 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:22:58.612800 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-18 10:22:59.321868 - -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:22:59.664065 - -[53] Log opened at 2024-10-18 10:22:59.693918 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:23:00.767583 - -[57] Log opened at 2024-10-18 10:23:05.027810 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-18 10:23:07.199245 - -[57] Log opened at 2024-10-18 10:23:07.363382 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] Log opened at 2024-10-18 10:23:07.397503 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-18 10:23:07.992098 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-18 10:23:08.407761 - -[59] Log opened at 2024-10-18 10:23:08.433214 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] Log opened at 2024-10-18 10:23:08.494200 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:23:08.496510 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:23:09.322433 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-18 10:23:10.041480 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:23:10.376028 - -[42] Log opened at 2024-10-18 10:23:10.399364 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:23:11.495683 - -[56] Log opened at 2024-10-18 10:23:20.938958 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:23:23.096569 - -[56] Log opened at 2024-10-18 10:23:23.251996 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] Log opened at 2024-10-18 10:23:23.290952 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:23:23.880378 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-18 10:23:24.295325 - -[54] Log opened at 2024-10-18 10:23:24.393344 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:23:24.396852 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] Log opened at 2024-10-18 10:23:24.416841 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:23:25.241387 - -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:23:25.967077 - -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-18 10:23:26.300795 - -[53] Log opened at 2024-10-18 10:23:26.324911 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:23:27.418773 - -[42] Log opened at 2024-10-18 10:23:32.748158 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:23:34.879817 - -[42] Log opened at 2024-10-18 10:23:35.041939 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] Log opened at 2024-10-18 10:23:35.088198 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:23:35.670409 - -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-18 10:23:36.105322 - -[58] Log opened at 2024-10-18 10:23:36.187758 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] Log opened at 2024-10-18 10:23:36.266529 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] Log opened at 2024-10-18 10:23:36.267590 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-18 10:23:37.098596 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-18 10:23:37.813724 - -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-18 10:23:38.154508 - -[60] Log opened at 2024-10-18 10:23:38.177971 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-18 10:23:39.268392 - -[53] Log opened at 2024-10-18 10:24:00.807679 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:24:02.968931 - -[53] Log opened at 2024-10-18 10:24:03.106020 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] Log opened at 2024-10-18 10:24:03.158239 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:24:03.738869 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-18 10:24:04.184433 - -[56] Log opened at 2024-10-18 10:24:04.211485 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] Log opened at 2024-10-18 10:24:04.266220 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] Log opened at 2024-10-18 10:24:04.267458 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:24:05.094125 - -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:24:05.810065 - -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-18 10:24:06.143753 - -[42] Log opened at 2024-10-18 10:24:06.171229 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:24:07.257162 - -[60] Log opened at 2024-10-18 10:25:18.994949 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-18 10:25:21.134255 - -[60] Log opened at 2024-10-18 10:25:21.281289 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:25:21.319997 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-18 10:25:21.909834 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:25:22.331184 - -[58] Log opened at 2024-10-18 10:25:22.361459 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] Log opened at 2024-10-18 10:25:22.431522 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] Log opened at 2024-10-18 10:25:22.440561 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-18 10:25:23.264281 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-18 10:25:23.982926 - -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:25:24.322991 - -[62] Log opened at 2024-10-18 10:25:24.351108 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-18 10:25:25.428262 - -[42] Log opened at 2024-10-18 10:25:36.906773 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:25:39.095409 - -[42] Log opened at 2024-10-18 10:25:39.249295 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] Log opened at 2024-10-18 10:25:39.289344 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:25:39.879302 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-18 10:25:40.290110 - -[60] Log opened at 2024-10-18 10:25:40.362983 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] Log opened at 2024-10-18 10:25:40.381293 -[53] Log opened at 2024-10-18 10:25:40.381293 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-18 10:25:41.206856 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-18 10:25:41.909241 - -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:25:42.242129 - -[59] Log opened at 2024-10-18 10:25:42.264603 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-18 10:25:43.344253 - -[62] Log opened at 2024-10-18 10:27:40.316509 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-18 10:27:42.441894 - -[62] Log opened at 2024-10-18 10:27:42.642923 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] Log opened at 2024-10-18 10:27:42.679565 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-18 10:27:43.271253 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-18 10:27:43.680595 - -[42] Log opened at 2024-10-18 10:27:43.717611 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] Log opened at 2024-10-18 10:27:43.795262 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] Log opened at 2024-10-18 10:27:43.800584 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-18 10:27:44.627350 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-18 10:27:45.344824 - -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-18 10:27:45.679343 - -[61] Log opened at 2024-10-18 10:27:45.702197 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-18 10:27:46.788590 - -[59] Log opened at 2024-10-18 10:28:13.570836 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-18 10:28:15.765278 - -[59] Log opened at 2024-10-18 10:28:15.873914 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] Log opened at 2024-10-18 10:28:15.917552 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-18 10:28:16.502831 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-18 10:28:16.944504 - -[62] Log opened at 2024-10-18 10:28:17.065354 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] Log opened at 2024-10-18 10:28:17.079235 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] Log opened at 2024-10-18 10:28:17.081831 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:28:17.908517 - -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-18 10:28:18.629489 - -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:28:18.970714 - -[56] Log opened at 2024-10-18 10:28:18.994599 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:28:20.072533 - -[61] Log opened at 2024-10-18 10:29:09.258122 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-18 10:29:11.388110 - -[61] Log opened at 2024-10-18 10:29:11.538861 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] Log opened at 2024-10-18 10:29:11.578572 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-18 10:29:12.167950 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-18 10:29:12.599067 - -[59] Log opened at 2024-10-18 10:29:12.630808 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] Log opened at 2024-10-18 10:29:12.694821 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:29:12.727374 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-18 10:29:13.525142 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-18 10:29:14.229537 - -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:29:14.561588 - -[62] Log opened at 2024-10-18 10:29:14.590105 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-18 10:29:15.688856 - -[65] Log opened at 2024-10-18 10:30:13.044127 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:30:15.208931 - -[65] Log opened at 2024-10-18 10:30:15.415755 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] Log opened at 2024-10-18 10:30:15.450026 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:30:16.044894 - -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:30:16.471404 - -[64] Log opened at 2024-10-18 10:30:16.536705 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] Log opened at 2024-10-18 10:30:16.551976 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] Log opened at 2024-10-18 10:30:16.552326 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:30:17.382947 - -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-18 10:30:18.089703 - -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:30:18.427976 - -[56] Log opened at 2024-10-18 10:30:18.450181 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:30:19.537245 - -[66] Log opened at 2024-10-18 10:30:32.477010 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:30:34.655589 - -[66] Log opened at 2024-10-18 10:30:34.791421 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:30:34.825519 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:30:35.420453 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:30:35.829322 - -[64] Log opened at 2024-10-18 10:30:35.858973 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] Log opened at 2024-10-18 10:30:35.918044 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] Log opened at 2024-10-18 10:30:35.918206 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:30:36.746518 - -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-18 10:30:37.450434 - -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:30:37.788932 - -[68] Log opened at 2024-10-18 10:30:37.821113 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:30:38.902134 - -[67] Log opened at 2024-10-18 10:33:03.692529 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:33:05.888221 - -[67] Log opened at 2024-10-18 10:33:06.022363 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] Log opened at 2024-10-18 10:33:06.065675 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:33:06.650981 - -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-18 10:33:07.068096 - -[66] Log opened at 2024-10-18 10:33:07.093069 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:33:07.161682 -[56] Log opened at 2024-10-18 10:33:07.161682 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:33:07.992026 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:33:08.713845 - -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:33:09.051671 - -[53] Log opened at 2024-10-18 10:33:09.079973 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:33:10.163471 - -[65] Log opened at 2024-10-18 10:33:22.539641 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:33:24.676990 - -[65] Log opened at 2024-10-18 10:33:24.783697 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] Log opened at 2024-10-18 10:33:24.816948 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:33:25.412512 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:33:25.835766 - -[67] Log opened at 2024-10-18 10:33:25.860127 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] Log opened at 2024-10-18 10:33:25.907346 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] Log opened at 2024-10-18 10:33:25.928158 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:33:26.733137 - -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:33:27.445977 - -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-18 10:33:27.780703 - -[66] Log opened at 2024-10-18 10:33:27.807067 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:33:28.908236 - -[69] Log opened at 2024-10-18 10:33:42.263321 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 10:33:44.394778 - -[69] Log opened at 2024-10-18 10:33:44.549339 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] Log opened at 2024-10-18 10:33:44.582572 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 10:33:45.178117 - -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-18 10:33:45.596790 - -[65] Log opened at 2024-10-18 10:33:45.627051 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:33:45.682344 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] Log opened at 2024-10-18 10:33:45.685933 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:33:46.509771 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:33:47.215921 - -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:33:47.553948 - -[53] Log opened at 2024-10-18 10:33:47.578495 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:33:48.682566 - -[68] Log opened at 2024-10-18 10:35:14.064668 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:35:16.199365 - -[68] Log opened at 2024-10-18 10:35:16.354360 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] Log opened at 2024-10-18 10:35:16.401209 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:35:16.983480 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:35:17.405735 - -[72] Log opened at 2024-10-18 10:35:17.550206 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] Log opened at 2024-10-18 10:35:17.554849 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] Log opened at 2024-10-18 10:35:17.554994 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-18 10:35:18.391318 - -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:35:18.713519 - -[70] Log opened at 2024-10-18 10:35:18.753984 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-18 10:35:19.426814 - -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-18 10:35:19.897745 - -[71] Log opened at 2024-10-18 10:35:28.513127 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-18 10:35:30.698611 - -[71] Log opened at 2024-10-18 10:35:30.863834 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] Log opened at 2024-10-18 10:35:30.924997 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-18 10:35:31.491968 - -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:35:31.947613 - -[53] Log opened at 2024-10-18 10:35:31.983368 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] Log opened at 2024-10-18 10:35:32.047467 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] Log opened at 2024-10-18 10:35:32.070532 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-18 10:35:32.880351 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:35:33.599397 - -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:35:33.945826 - -[73] Log opened at 2024-10-18 10:35:33.974719 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-18 10:35:35.074957 - -[69] Log opened at 2024-10-18 10:35:40.145274 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 10:35:42.320107 - -[69] Log opened at 2024-10-18 10:35:42.459393 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] Log opened at 2024-10-18 10:35:42.499178 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 10:35:43.088609 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:35:43.521613 - -[70] Log opened at 2024-10-18 10:35:43.547490 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:35:43.597035 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] Log opened at 2024-10-18 10:35:43.597249 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:35:44.435018 - -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-18 10:35:45.139059 - -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:35:45.479961 - -[53] Log opened at 2024-10-18 10:35:45.506767 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:35:46.597192 - -[67] Log opened at 2024-10-18 10:35:54.730652 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:35:56.856296 - -[67] Log opened at 2024-10-18 10:35:56.989786 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] Log opened at 2024-10-18 10:35:57.029066 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:35:57.618335 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-18 10:35:58.036368 - -[68] Log opened at 2024-10-18 10:35:58.068918 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] Log opened at 2024-10-18 10:35:58.123773 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[70] Log opened at 2024-10-18 10:35:58.123765 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-18 10:35:58.953836 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:35:59.680873 - -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-18 10:36:00.022351 - -[70] Log opened at 2024-10-18 10:36:00.045622 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-18 10:36:01.132356 - -[65] Log opened at 2024-10-18 10:36:14.607492 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:36:16.738396 - -[65] Log opened at 2024-10-18 10:36:16.897908 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 10:36:16.948483 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:36:17.528625 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:36:17.949396 - -[67] Log opened at 2024-10-18 10:36:18.028537 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] Log opened at 2024-10-18 10:36:18.037665 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] Log opened at 2024-10-18 10:36:18.038065 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:36:18.868169 - -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:36:19.572925 - -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:36:19.911331 - -[66] Log opened at 2024-10-18 10:36:19.937097 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:36:21.029022 - -[69] Log opened at 2024-10-18 10:41:20.127052 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 10:41:22.258121 - -[69] Log opened at 2024-10-18 10:41:22.435680 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] Log opened at 2024-10-18 10:41:22.467916 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 10:41:23.066429 - -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-18 10:41:23.508898 - -[76] Log opened at 2024-10-18 10:41:23.648271 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] Log opened at 2024-10-18 10:41:23.669438 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] Log opened at 2024-10-18 10:41:23.698386 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:41:24.511412 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 10:41:25.215507 - -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 10:41:25.562283 - -[65] Log opened at 2024-10-18 10:41:25.599222 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 10:41:26.698098 - -[53] Log opened at 2024-10-18 10:41:49.168803 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:41:51.322496 - -[53] Log opened at 2024-10-18 10:41:51.471290 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] Log opened at 2024-10-18 10:41:51.508831 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 10:41:52.099727 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 10:41:52.529317 - -[68] Log opened at 2024-10-18 10:41:52.572530 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] Log opened at 2024-10-18 10:41:52.633506 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] Log opened at 2024-10-18 10:41:52.642878 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 10:41:53.510722 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 10:41:54.234696 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 10:41:54.569005 - -[77] Log opened at 2024-10-18 10:41:54.597527 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 10:41:55.706587 - -[72] Log opened at 2024-10-18 10:42:13.681261 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-18 10:42:21.465532 - -[67] Log opened at 2024-10-18 10:45:47.154006 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 1 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 2 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 3 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 4 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 8 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 9 -[67] [Step Debug] -> - -[67] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[67] [Step Debug] -> - -[67] [Step Debug] <- context_names -i 11 -d 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 12 -d 0 -c 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 13 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 14 -[67] [Step Debug] -> - -[67] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[67] [Step Debug] -> - -[67] [Step Debug] <- context_names -i 16 -d 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 18 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 19 -[67] [Step Debug] -> - -[67] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[67] [Step Debug] -> - -[67] [Step Debug] <- context_names -i 21 -d 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 23 -[67] [Step Debug] -> - -[67] [Step Debug] <- stop -i 24 -[67] [Step Debug] -> - -[67] Log closed at 2024-10-18 10:46:00.769094 - -[67] Log opened at 2024-10-18 10:46:03.433160 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 1 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 2 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 3 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 4 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 8 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 9 -[67] [Step Debug] -> - -[67] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[67] [Step Debug] -> - -[67] [Step Debug] <- context_names -i 11 -d 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 12 -d 0 -c 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 13 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 14 -[67] [Step Debug] -> - -[67] [Step Debug] <- eval -i 15 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[67] [Step Debug] -> - -[67] [Step Debug] <- context_names -i 16 -d 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 18 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 19 -[67] [Step Debug] -> - -[67] [Step Debug] <- eval -i 20 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[67] [Step Debug] -> - -[67] [Step Debug] <- context_names -i 21 -d 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 23 -d 0 -c 1 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 24 -d 0 -c 2 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_list -i 25 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_remove -i 26 -d 670005 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[67] [Step Debug] -> - -[67] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 29 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 30 -[67] [Step Debug] -> - -[67] [Step Debug] <- stack_get -i 31 -[67] [Step Debug] -> - -[67] [Step Debug] <- eval -i 32 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[67] [Step Debug] -> - -[67] [Step Debug] <- context_names -i 33 -d 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[67] [Step Debug] -> - -[67] [Step Debug] <- run -i 35 -[67] [Step Debug] -> - -[67] [Step Debug] <- stop -i 36 -[67] [Step Debug] -> - -[67] Log closed at 2024-10-18 10:47:29.217556 - -[65] Log opened at 2024-10-18 10:47:31.909373 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 1 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 2 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 3 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 4 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[65] [Step Debug] -> - -[65] [Step Debug] <- run -i 9 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 10 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 12 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- step_over -i 14 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 15 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 16 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 17 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 19 -d 0 -c 1 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 20 -d 0 -c 2 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 21 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_remove -i 22 -d 650002 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_remove -i 23 -d 650003 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 25 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_remove -i 26 -d 650005 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1238 -[65] [Step Debug] -> - -[65] [Step Debug] <- step_over -i 29 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 30 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 31 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 32 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- run -i 34 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 35 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 36 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 37 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 38 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- step_over -i 40 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 41 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 42 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 43 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 44 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 45 -d 0 -c 1 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 46 -d 0 -c 2 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 47 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_remove -i 48 -d 650006 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_remove -i 49 -d 650007 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 50 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_list -i 51 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_remove -i 52 -d 650008 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 53 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[65] [Step Debug] -> - -[65] [Step Debug] <- breakpoint_set -i 54 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[65] [Step Debug] -> - -[65] [Step Debug] <- run -i 55 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 56 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 57 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 58 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 59 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- run -i 60 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 61 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 62 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 63 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 64 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- run -i 65 -[65] [Step Debug] -> - -[65] [Step Debug] <- stack_get -i 66 -[65] [Step Debug] -> - -[65] [Step Debug] <- eval -i 67 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[65] [Step Debug] -> - -[65] [Step Debug] <- context_names -i 68 -d 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- context_get -i 69 -d 0 -c 0 -[65] [Step Debug] -> - -[65] [Step Debug] <- run -i 70 -[65] [Step Debug] -> - -[65] [Step Debug] <- stop -i 71 -[65] [Step Debug] -> - -[65] Log closed at 2024-10-18 10:48:42.571508 - -[78] Log opened at 2024-10-18 10:48:49.839402 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 2 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 3 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 4 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 9 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 10 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 12 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- step_over -i 14 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 15 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 16 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 18 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 20 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 21 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 23 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 25 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 26 -- JHBlc29fZW52aW8= -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 27 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 28 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 31 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 33 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 34 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 36 -- JHBlc29fZW52aW8= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 37 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 38 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 39 -d 0 -c 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 40 -d 0 -c 2 -[78] [Step Debug] -> - -[78] [Step Debug] <- step_over -i 41 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 42 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 43 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 44 -- JHBlc29fZW52aW8= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 45 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 46 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- property_get -i 47 -d 0 -c 0 -n "$data[0]" -[78] [Step Debug] -> - -[78] [Step Debug] <- step_over -i 48 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 49 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 50 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 51 -- JHBlc29fZW52aW8= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 52 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 53 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 54 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 55 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 56 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 57 -- JHBlc29fZW52aW8= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 58 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 59 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 60 -[78] [Step Debug] -> - -[78] [Step Debug] <- stop -i 61 -[78] [Step Debug] -> - -[78] Log closed at 2024-10-18 10:49:52.876447 - -[68] Log opened at 2024-10-18 10:49:55.290431 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 2 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 3 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 4 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 399 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 9 -[68] [Step Debug] -> - -[68] [Step Debug] <- stack_get -i 10 -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 11 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 12 -- JHBlc29fZW52aW8= -[68] [Step Debug] -> - -[68] [Step Debug] <- context_names -i 13 -d 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 15 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_remove -i 16 -d 680002 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_remove -i 17 -d 680003 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1280 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 19 -d 0 -c 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 20 -d 0 -c 2 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 21 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_remove -i 22 -d 680005 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1289 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 24 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_remove -i 25 -d 680006 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1288 -[68] [Step Debug] -> - -[68] [Step Debug] <- property_get -i 27 -d 0 -c 0 -n "$return_data[\"errors\"]" -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 28 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_remove -i 29 -d 680007 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1289 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 31 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_remove -i 32 -d 680008 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1292 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 34 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_remove -i 35 -d 680009 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1294 -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 37 -[68] [Step Debug] -> - -[68] [Step Debug] <- stop -i 38 -[68] [Step Debug] -> - -[68] Log closed at 2024-10-18 11:10:32.133741 - -[53] Log opened at 2024-10-18 11:10:48.589953 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 2 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 3 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 4 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1294 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 8 -[53] [Step Debug] -> - -[53] [Step Debug] <- stack_get -i 9 -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8= -[53] [Step Debug] -> - -[53] [Step Debug] <- context_names -i 12 -d 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 14 -[53] [Step Debug] -> - -[53] [Step Debug] <- stack_get -i 15 -[53] [Step Debug] -> - -[53] [Step Debug] <- stack_get -i 16 -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 17 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 18 -- JHBlc29fZW52aW8= -[53] [Step Debug] -> - -[53] [Step Debug] <- context_names -i 19 -d 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- step_over -i 21 -[53] [Step Debug] -> - -[53] [Step Debug] <- stack_get -i 22 -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 23 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 24 -- JHBlc29fZW52aW8= -[53] [Step Debug] -> - -[53] [Step Debug] <- context_names -i 25 -d 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 27 -[53] [Step Debug] -> - -[53] [Step Debug] <- stack_get -i 28 -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[53] [Step Debug] -> - -[53] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8= -[53] [Step Debug] -> - -[53] [Step Debug] <- context_names -i 31 -d 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 33 -[53] [Step Debug] -> - -[53] [Step Debug] <- stop -i 34 -[53] [Step Debug] -> - -[53] Log closed at 2024-10-18 11:11:01.768430 - -[66] Log opened at 2024-10-18 11:12:00.050258 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 1 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 2 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 3 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 4 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[66] [Step Debug] -> - -[66] [Step Debug] <- run -i 8 -[66] [Step Debug] -> - -[66] [Step Debug] <- stack_get -i 9 -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8= -[66] [Step Debug] -> - -[66] [Step Debug] <- context_names -i 12 -d 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- run -i 14 -[66] [Step Debug] -> - -[66] [Step Debug] <- stack_get -i 15 -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 16 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8= -[66] [Step Debug] -> - -[66] [Step Debug] <- context_names -i 18 -d 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- run -i 20 -[66] [Step Debug] -> - -[66] [Step Debug] <- stack_get -i 21 -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 22 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8= -[66] [Step Debug] -> - -[66] [Step Debug] <- context_names -i 24 -d 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- step_over -i 26 -[66] [Step Debug] -> - -[66] [Step Debug] <- stack_get -i 27 -[66] [Step Debug] -> - -[66] [Step Debug] <- stack_get -i 28 -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 29 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 30 -- JHBlc29fZW52aW8= -[66] [Step Debug] -> - -[66] [Step Debug] <- context_names -i 31 -d 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- step_over -i 33 -[66] [Step Debug] -> - -[66] [Step Debug] <- stack_get -i 34 -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 35 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[66] [Step Debug] -> - -[66] [Step Debug] <- eval -i 36 -- JHBlc29fZW52aW8= -[66] [Step Debug] -> - -[66] [Step Debug] <- context_names -i 37 -d 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- context_get -i 38 -d 0 -c 0 -[66] [Step Debug] -> - -[66] [Step Debug] <- run -i 39 -[66] [Step Debug] -> - -[66] [Step Debug] <- stop -i 40 -[66] [Step Debug] -> - -[66] Log closed at 2024-10-18 11:12:17.518444 - -[69] Log opened at 2024-10-18 11:12:38.550876 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] -> - -[69] [Step Debug] <- breakpoint_list -i 1 -[69] [Step Debug] -> - -[69] [Step Debug] <- breakpoint_list -i 2 -[69] [Step Debug] -> - -[69] [Step Debug] <- breakpoint_list -i 3 -[69] [Step Debug] -> - -[69] [Step Debug] <- breakpoint_list -i 4 -[69] [Step Debug] -> - -[69] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[69] [Step Debug] -> - -[69] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[69] [Step Debug] -> - -[69] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[69] [Step Debug] -> - -[69] [Step Debug] <- run -i 8 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 9 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 10 -- JGJ1aWxkZXItPmdldCgpLT5nZXRSZXN1bHRPYmplY3QoKQ== -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 12 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 14 -- JGRhdGFbMF0tPmNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 15 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 16 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- step_over -i 18 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 19 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 20 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 21 -- JGRhdGFbMF0tPmNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 22 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 23 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 25 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 26 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 27 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- run -i 29 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 30 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 31 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 32 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 33 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- run -i 35 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 36 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 37 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 38 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 39 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 41 -d 0 -c 1 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 42 -d 0 -c 2 -[69] [Step Debug] -> - -[69] [Step Debug] <- step_over -i 43 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 44 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 45 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 46 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 47 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 48 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- step_over -i 49 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 50 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 51 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 52 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 53 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 54 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 55 -d 0 -c 1 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 56 -d 0 -c 2 -[69] [Step Debug] -> - -[69] [Step Debug] <- step_over -i 57 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 58 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 59 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 60 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 61 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 62 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 63 -d 0 -c 1 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 64 -d 0 -c 2 -[69] [Step Debug] -> - -[69] [Step Debug] <- step_over -i 65 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 66 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 67 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 68 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 69 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 70 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 71 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- run -i 72 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 73 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 74 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 75 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 76 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 77 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- run -i 78 -[69] [Step Debug] -> - -[69] [Step Debug] <- stack_get -i 79 -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 80 -- JGNvc3Rl -[69] [Step Debug] -> - -[69] [Step Debug] <- eval -i 81 -- JHBlc29fZW52aW8= -[69] [Step Debug] -> - -[69] [Step Debug] <- context_names -i 82 -d 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- context_get -i 83 -d 0 -c 0 -[69] [Step Debug] -> - -[69] [Step Debug] <- run -i 84 -[69] [Step Debug] -> - -[69] [Step Debug] <- stop -i 85 -[69] [Step Debug] -> - -[69] Log closed at 2024-10-18 11:13:55.952133 - -[76] Log opened at 2024-10-18 11:14:56.003690 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_list -i 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_list -i 2 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_list -i 3 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_list -i 4 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 8 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 9 -[76] [Step Debug] -> - -[76] [Step Debug] <- eval -i 10 -- JGNvc3Rl -[76] [Step Debug] -> - -[76] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8= -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 12 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 14 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 15 -[76] [Step Debug] -> - -[76] [Step Debug] <- eval -i 16 -- JGNvc3Rl -[76] [Step Debug] -> - -[76] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8= -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 18 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 20 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 21 -[76] [Step Debug] -> - -[76] [Step Debug] <- eval -i 22 -- JGNvc3Rl -[76] [Step Debug] -> - -[76] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8= -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 24 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 26 -[76] [Step Debug] -> - -[76] [Step Debug] <- stop -i 27 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-18 11:15:06.805522 - -[77] Log opened at 2024-10-18 11:15:12.818327 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 2 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 3 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 4 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 8 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 9 -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 10 -- JGNvc3Rl -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 11 -- JHBlc29fZW52aW8= -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 12 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 13 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 14 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 15 -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 16 -- JGNvc3Rl -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 17 -- JHBlc29fZW52aW8= -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 18 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 20 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 21 -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 22 -- JGNvc3Rl -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 23 -- JHBlc29fZW52aW8= -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 24 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 26 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 27 -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 28 -- JGNvc3Rl -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 29 -- JHBlc29fZW52aW8= -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 30 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 32 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 33 -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 34 -- JGNvc3Rl -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 35 -- JHBlc29fZW52aW8= -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 36 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 37 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 38 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 39 -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 40 -- JGNvc3Rl -[77] [Step Debug] -> - -[77] [Step Debug] <- eval -i 41 -- JHBlc29fZW52aW8= -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 42 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 43 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 44 -[77] [Step Debug] -> - -[77] [Step Debug] <- stop -i 45 -[77] [Step Debug] -> - -[77] Log closed at 2024-10-18 11:15:44.351717 - -[72] Log opened at 2024-10-18 11:16:06.683615 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 2 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 3 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 4 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 7 -t exception -x * -[72] [Step Debug] -> - -[72] [Step Debug] <- run -i 8 -[72] [Step Debug] -> - -[72] [Step Debug] <- stop -i 9 -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] Log closed at 2024-10-18 11:16:12.691260 - -[67] Log opened at 2024-10-18 11:16:18.999017 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:16:26.363570 - -[67] Log opened at 2024-10-18 11:16:30.008718 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:16:36.700032 - -[65] Log opened at 2024-10-18 11:16:59.304270 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 11:17:05.537353 - -[78] Log opened at 2024-10-18 11:18:26.109810 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 2 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 3 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 4 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 9 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 10 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 11 -- JGNvc3Rl -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 12 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 13 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 14 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 15 -- JGNvc3Rl -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 16 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 17 -- JHBlc28= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 18 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 20 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 21 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 22 -- JGNvc3Rl -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 23 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 24 -- JHBlc28= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 25 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 27 -[78] [Step Debug] -> - -[78] [Step Debug] <- stack_get -i 28 -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 29 -- JGNvc3Rl -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 30 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[78] [Step Debug] -> - -[78] [Step Debug] <- eval -i 31 -- JHBlc28= -[78] [Step Debug] -> - -[78] [Step Debug] <- context_names -i 32 -d 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 34 -[78] [Step Debug] -> - -[78] [Step Debug] <- stop -i 35 -[78] [Step Debug] -> - -[78] Log closed at 2024-10-18 11:18:54.785793 - -[68] Log opened at 2024-10-18 11:19:00.739233 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 2 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 3 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 4 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 9 -[68] [Step Debug] -> - -[68] [Step Debug] <- stack_get -i 10 -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 11 -- JGNvc3Rl -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 12 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 13 -- JHBlc28= -[68] [Step Debug] -> - -[68] [Step Debug] <- context_names -i 14 -d 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 15 -d 0 -c 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 16 -[68] [Step Debug] -> - -[68] [Step Debug] <- stack_get -i 17 -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 18 -- JGNvc3Rl -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 19 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 20 -- JHBlc28= -[68] [Step Debug] -> - -[68] [Step Debug] <- context_names -i 21 -d 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 23 -[68] [Step Debug] -> - -[68] [Step Debug] <- stack_get -i 24 -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 25 -- JGNvc3Rl -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 26 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 27 -- JHBlc28= -[68] [Step Debug] -> - -[68] [Step Debug] <- context_names -i 28 -d 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 29 -d 0 -c 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 30 -[68] [Step Debug] -> - -[68] [Step Debug] <- stop -i 31 -[68] [Step Debug] -> - -[68] Log closed at 2024-10-18 11:19:27.736133 - -[53] Log opened at 2024-10-18 11:19:33.106259 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 2 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 3 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 4 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 9 -[53] [Step Debug] -> - -[53] [Step Debug] <- stop -i 10 -[53] [Step Debug] -> - -[53] Log closed at 2024-10-18 11:19:33.657045 - -[66] Log opened at 2024-10-18 11:19:33.702152 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 1 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 2 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 3 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 4 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[66] [Step Debug] -> - -[66] [Step Debug] <- run -i 9 -[66] [Step Debug] -> - -[66] [Step Debug] <- stop -i 10 -[66] [Step Debug] -> - -[66] Log closed at 2024-10-18 11:19:33.799690 - -[66] Log opened at 2024-10-18 11:19:33.919005 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] -> - -[77] Log opened at 2024-10-18 11:19:33.921167 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 1 -[66] [Step Debug] <- breakpoint_list -i 1 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 2 -[77] [Step Debug] <- breakpoint_list -i 2 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 3 -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 3 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 4 -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 4 -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 9 -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[66] [Step Debug] <- breakpoint_list -i 10 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 11 -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[66] [Step Debug] <- breakpoint_list -i 12 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 9 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 10 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 11 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 12 -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_remove -i 13 -d 660008 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_remove -i 14 -d 660009 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_remove -i 15 -d 660010 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_remove -i 16 -d 660011 -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_remove -i 13 -d 770004 -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_remove -i 14 -d 770005 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_remove -i 15 -d 770006 -[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[77] [Step Debug] -> - -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_remove -i 16 -d 770007 -[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[77] [Step Debug] -> - -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 20 -t exception -x * -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 20 -t exception -x * -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 21 -[66] [Step Debug] <- run -i 21 -[72] Log opened at 2024-10-18 11:19:33.983462 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[72] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 2 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 3 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_list -i 4 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 8 -t exception -x * -[72] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 22 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 23 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 24 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 25 -[77] [Step Debug] -> - -[77] [Step Debug] <- stop -i 26 -[77] [Step Debug] -> - -[77] Log closed at 2024-10-18 11:19:34.212822 - -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 22 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 23 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 24 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 25 -[66] [Step Debug] -> - -[66] [Step Debug] <- stop -i 26 -[66] [Step Debug] -> - -[66] Log closed at 2024-10-18 11:19:34.647018 - -[72] [Step Debug] <- stop -i 9 -[72] [Step Debug] -> - -[67] Log opened at 2024-10-18 11:19:43.926868 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:19:44.954342 - -[65] Log opened at 2024-10-18 11:19:54.037240 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 11:19:55.563797 - -[65] Log opened at 2024-10-18 11:19:55.607699 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 11:19:56.238024 - -[78] Log opened at 2024-10-18 11:19:56.303862 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] Log opened at 2024-10-18 11:19:56.320708 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] Log opened at 2024-10-18 11:19:56.359334 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] Log opened at 2024-10-18 11:19:56.369336 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 11:19:57.121049 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:19:57.734803 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 11:19:58.152110 - -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 11:19:58.564221 - -[77] Log opened at 2024-10-18 11:20:16.402894 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:20:17.444024 - -[67] Log opened at 2024-10-18 11:21:18.520626 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:21:26.298025 - -[67] Log opened at 2024-10-18 11:21:30.093557 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:21:36.826431 - -[65] Log opened at 2024-10-18 11:33:09.128570 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 11:33:15.977984 - -[76] Log opened at 2024-10-18 11:33:33.924887 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log opened at 2024-10-18 11:33:40.575091 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:33:41.230169 - -[78] Log opened at 2024-10-18 11:33:42.892264 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log opened at 2024-10-18 11:33:44.126864 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-18 11:33:47.582177 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:33:54.497296 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-18 11:34:01.116945 - -[67] Log opened at 2024-10-18 11:35:31.347463 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:35:38.199172 - -[79] Log opened at 2024-10-18 11:36:41.877572 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:36:42.911597 - -[65] Log opened at 2024-10-18 11:36:59.518028 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 11:37:00.535064 - -[68] Log opened at 2024-10-18 11:37:44.042645 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 2 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 3 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 4 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 5 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 11 -[68] [Step Debug] -> - -[68] [Step Debug] <- stack_get -i 12 -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 13 -- JGNvc3Rl -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 14 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 15 -- JHBlc28= -[68] [Step Debug] -> - -[68] [Step Debug] <- context_names -i 16 -d 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- step_over -i 18 -[68] [Step Debug] -> - -[68] [Step Debug] <- stack_get -i 19 -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 20 -- JGNvc3Rl -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 21 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 22 -- JHBlc28= -[68] [Step Debug] -> - -[68] [Step Debug] <- context_names -i 23 -d 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- step_over -i 25 -[68] [Step Debug] -> - -[68] [Step Debug] <- stack_get -i 26 -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 27 -- JGNvc3Rl -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 28 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[68] [Step Debug] -> - -[68] [Step Debug] <- eval -i 29 -- JHBlc28= -[68] [Step Debug] -> - -[68] [Step Debug] <- context_names -i 30 -d 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 32 -[68] [Step Debug] -> - -[68] [Step Debug] <- stop -i 33 -[68] [Step Debug] -> - -[68] Log closed at 2024-10-18 11:38:00.544746 - -[78] Log opened at 2024-10-18 11:39:34.624889 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 2 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 3 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 4 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_list -i 5 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[78] [Step Debug] -> - -[78] [Step Debug] <- run -i 11 -[78] [Step Debug] -> - -[78] [Step Debug] <- stop -i 12 -[78] [Step Debug] -> - -[78] Log closed at 2024-10-18 11:39:36.354640 - -[77] Log opened at 2024-10-18 11:39:36.463291 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] -> - -[66] Log opened at 2024-10-18 11:39:36.464785 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 1 -[66] [Step Debug] <- breakpoint_list -i 1 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 2 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 3 -[66] [Step Debug] <- breakpoint_list -i 2 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 4 -[77] [Step Debug] -> - -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 5 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_list -i 6 -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 3 -[77] [Step Debug] <- breakpoint_list -i 7 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 4 -[77] [Step Debug] <- breakpoint_list -i 8 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 5 -[77] [Step Debug] <- breakpoint_list -i 9 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 6 -[77] [Step Debug] <- breakpoint_list -i 10 -[66] [Step Debug] -> - -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 7 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 8 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 9 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 10 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[77] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[77] [Step Debug] -> - -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 15 -t exception -x * -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 15 -t exception -x * -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[77] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 20 -t exception -x * -[66] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 20 -t exception -x * -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 21 -[66] [Step Debug] <- run -i 21 -[77] [Step Debug] -> - -[77] [Step Debug] <- stop -i 22 -[77] [Step Debug] -> - -[77] Log closed at 2024-10-18 11:39:36.551897 - -[66] [Step Debug] -> - -[66] [Step Debug] <- stop -i 22 -[66] [Step Debug] -> - -[66] Log closed at 2024-10-18 11:39:36.927900 - -[66] Log opened at 2024-10-18 11:39:36.950611 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 1 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 2 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 3 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 4 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 5 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[66] [Step Debug] -> - -[66] [Step Debug] <- run -i 11 -[53] Log opened at 2024-10-18 11:39:37.052593 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[53] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 2 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 3 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 4 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 5 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[53] [Step Debug] -> - -[68] Log opened at 2024-10-18 11:39:37.068998 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[68] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 1 -[68] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 11 -[53] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 2 -[68] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 12 -[68] [Step Debug] <- breakpoint_list -i 3 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 4 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_list -i 5 -[68] [Step Debug] -> - -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 13 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 14 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_list -i 15 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_remove -i 16 -d 530008 -[53] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[68] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_remove -i 17 -d 530009 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_remove -i 18 -d 530010 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_remove -i 19 -d 530011 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_remove -i 20 -d 530012 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 25 -t exception -x * -[53] [Step Debug] -> - -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 12 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 13 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 14 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 15 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 16 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 17 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 18 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 19 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 20 -[66] [Step Debug] -> - -[66] [Step Debug] <- breakpoint_list -i 21 -[66] [Step Debug] -> - -[66] [Step Debug] <- stop -i 22 -[66] [Step Debug] -> - -[66] Log closed at 2024-10-18 11:39:37.638582 - -[53] [Step Debug] <- stop -i 26 -[53] [Step Debug] -> - -[68] [Step Debug] <- stop -i 11 -[68] [Step Debug] -> - -[67] Log opened at 2024-10-18 11:39:49.837611 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] Log opened at 2024-10-18 11:39:49.838024 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:39:50.694487 - -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_list -i 1 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_list -i 2 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_list -i 3 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_list -i 4 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_list -i 5 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 142 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelFormatoModel.php -n 124 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 414 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1295 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x * -[79] [Step Debug] -> - -[79] [Step Debug] -> - -[79] Log closed at 2024-10-18 11:39:50.892137 - -[67] Log opened at 2024-10-18 11:39:50.927996 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-18 11:39:52.007439 - -[69] Log opened at 2024-10-18 11:39:55.144752 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 11:39:57.341144 - -[69] Log opened at 2024-10-18 11:39:57.482315 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] Log opened at 2024-10-18 11:39:57.525035 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 11:39:58.111428 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:39:58.552232 - -[65] Log opened at 2024-10-18 11:39:58.582792 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] Log opened at 2024-10-18 11:39:58.653849 -[77] Log opened at 2024-10-18 11:39:58.653844 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:39:59.491423 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-18 11:40:00.107541 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:40:00.444679 - -[78] Log opened at 2024-10-18 11:40:00.467591 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:40:01.560870 - -[80] Log opened at 2024-10-18 11:40:45.291679 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). ->>>>>>> dev/presu_cliente_v2 -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[80] Log closed at 2024-10-18 12:26:29.645601 - -[81] Log opened at 2024-10-18 12:27:31.020113 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:27:32.064356 - -[81] Log opened at 2024-10-18 12:27:32.086527 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:27:32.718937 - -[94] Log opened at 2024-10-18 12:27:32.802531 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 12:27:32.807118 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 12:27:33.580008 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:27:34.179198 - -[82] Log opened at 2024-10-18 12:27:47.289813 -======= -[80] Log closed at 2024-10-18 11:40:47.481169 - -[81] Log opened at 2024-10-18 11:40:47.623808 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] Log opened at 2024-10-18 11:40:47.662199 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:40:48.253978 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 11:40:48.663067 - -[81] Log opened at 2024-10-18 11:40:48.739522 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] Log opened at 2024-10-18 11:40:48.762451 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[66] Log opened at 2024-10-18 11:40:48.762451 -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 11:40:49.592220 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 11:40:50.182328 - -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 11:40:50.514117 - -[82] Log opened at 2024-10-18 11:40:50.539446 ->>>>>>> dev/presu_cliente_v2 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[82] Log closed at 2024-10-18 12:27:48.304561 - -[82] Log opened at 2024-10-18 12:27:48.322262 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:27:48.956203 - -[28] Log opened at 2024-10-18 12:27:49.027639 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 12:27:49.033056 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:27:49.802535 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:27:50.416840 - -[86] Log opened at 2024-10-18 12:28:59.433291 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:29:00.442313 - -[86] Log opened at 2024-10-18 12:29:00.465363 -======= -[82] Log closed at 2024-10-18 11:40:51.619754 - -[78] Log opened at 2024-10-18 11:41:32.382403 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:41:34.562727 - -[78] Log opened at 2024-10-18 11:41:34.702527 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] Log opened at 2024-10-18 11:41:34.739713 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:41:35.330857 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:41:35.742968 - -[80] Log opened at 2024-10-18 11:41:35.848572 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] Log opened at 2024-10-18 11:41:35.868385 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] Log opened at 2024-10-18 11:41:35.871870 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 11:41:36.692170 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:41:37.279288 - -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:41:37.609687 - -[79] Log opened at 2024-10-18 11:41:37.636279 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:41:38.717621 - -[66] Log opened at 2024-10-18 11:41:59.202602 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 11:42:01.367002 - -[66] Log opened at 2024-10-18 11:42:01.471005 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 11:42:01.473845 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 11:42:02.101736 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:42:02.473271 - -[82] Log opened at 2024-10-18 11:42:02.512778 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] Log opened at 2024-10-18 11:42:02.598922 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] Log opened at 2024-10-18 11:42:02.609987 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:42:03.429742 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 11:42:04.020552 - -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:42:04.353419 - -[76] Log opened at 2024-10-18 11:42:04.376797 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:42:05.463093 - -[80] Log opened at 2024-10-18 11:46:35.343417 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:46:37.510431 - -[80] Log opened at 2024-10-18 11:46:37.664674 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[83] Log opened at 2024-10-18 11:46:37.710663 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:46:38.293460 - -[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-18 11:46:38.746925 - -[77] Log opened at 2024-10-18 11:46:38.774793 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] Log opened at 2024-10-18 11:46:38.849479 -[66] Log opened at 2024-10-18 11:46:38.849478 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-18 11:46:39.676427 - -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:46:40.290362 - -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:46:40.621247 - -[77] Log opened at 2024-10-18 11:46:44.525265 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:46:45.628167 - -[76] Log opened at 2024-10-18 11:47:27.456516 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:47:29.639893 - -[76] Log opened at 2024-10-18 11:47:29.787564 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] Log opened at 2024-10-18 11:47:29.838007 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:47:30.416949 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:47:30.859620 - -[69] Log opened at 2024-10-18 11:47:30.887185 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] Log opened at 2024-10-18 11:47:30.958377 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[83] Log opened at 2024-10-18 11:47:30.958653 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:47:31.795095 - -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 11:47:32.387860 - -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-18 11:47:32.744422 - -[80] Log opened at 2024-10-18 11:47:32.770923 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:47:33.867222 - -[78] Log opened at 2024-10-18 11:47:51.662518 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:47:59.031554 - -[78] Log opened at 2024-10-18 11:48:01.600542 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:48:02.614741 - -[84] Log opened at 2024-10-18 11:49:59.385030 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:50:01.542703 - -[84] Log opened at 2024-10-18 11:50:01.714512 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] Log opened at 2024-10-18 11:50:01.755353 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:50:02.343098 - -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-18 11:50:02.763873 - -[86] Log opened at 2024-10-18 11:50:02.788986 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] Log opened at 2024-10-18 11:50:02.875568 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[76] Log opened at 2024-10-18 11:50:02.875568 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:50:03.699016 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:50:04.357334 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:50:04.694696 - -[86] Log opened at 2024-10-18 11:50:04.720438 ->>>>>>> dev/presu_cliente_v2 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[86] Log closed at 2024-10-18 12:29:01.096765 - -[95] Log opened at 2024-10-18 12:29:01.169535 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:29:01.171756 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[86] Log closed at 2024-10-18 11:50:05.820319 - -[80] Log opened at 2024-10-18 11:50:26.868874 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:50:28.998871 - -[80] Log opened at 2024-10-18 11:50:29.145068 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] Log opened at 2024-10-18 11:50:29.176386 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:50:29.773376 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:50:30.189424 - -[85] Log opened at 2024-10-18 11:50:30.264305 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] Log opened at 2024-10-18 11:50:30.280189 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:50:30.280371 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). ->>>>>>> dev/presu_cliente_v2 -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[87] Log closed at 2024-10-18 12:29:01.942304 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:29:02.586016 - -[24] Log opened at 2024-10-18 12:29:14.575808 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:29:15.594367 - -[24] Log opened at 2024-10-18 12:29:15.613004 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:29:16.247608 - -[81] Log opened at 2024-10-18 12:29:16.324035 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 12:29:16.326455 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:29:17.093253 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:29:17.688771 - -[94] Log opened at 2024-10-18 12:29:28.443978 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:29:29.455822 - -[94] Log opened at 2024-10-18 12:29:29.473052 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:29:30.106417 - -[82] Log opened at 2024-10-18 12:29:30.180949 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:29:30.183772 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:29:30.958457 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:29:31.578801 - -[94] Log opened at 2024-10-18 12:29:35.861385 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:29:36.903522 - -[94] Log opened at 2024-10-18 12:29:36.924236 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:29:37.556688 - -[28] Log opened at 2024-10-18 12:29:37.624442 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:29:37.626270 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:29:38.405447 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 12:29:39.017457 - -[80] Log opened at 2024-10-18 12:29:54.837373 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:29:55.875119 - -[80] Log opened at 2024-10-18 12:29:55.897230 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:29:56.531324 - -[86] Log opened at 2024-10-18 12:29:56.605355 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] Log opened at 2024-10-18 12:29:56.608638 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[87] Log closed at 2024-10-18 11:50:31.111084 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:50:31.724110 - -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:50:32.057250 - -[78] Log opened at 2024-10-18 11:50:32.080481 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:50:33.233483 - -[79] Log opened at 2024-10-18 11:50:51.645312 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log opened at 2024-10-18 11:50:53.976401 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:50:59.527669 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:51:00.082729 - -[86] Log opened at 2024-10-18 11:51:40.831796 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log opened at 2024-10-18 11:51:42.087312 -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log opened at 2024-10-18 11:51:43.060967 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log opened at 2024-10-18 11:51:45.363738 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:51:48.741608 - -[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-18 11:51:56.457719 - -[87] Log opened at 2024-10-18 11:51:58.129287 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:52:02.923946 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:52:10.947760 - -[85] Log opened at 2024-10-18 11:52:13.761758 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:52:17.667124 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:52:19.205818 - -[85] Log opened at 2024-10-18 11:52:19.325564 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] Log opened at 2024-10-18 11:52:19.326515 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:52:19.957157 - -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:52:20.333952 - -[77] Log opened at 2024-10-18 11:52:20.436338 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] Log opened at 2024-10-18 11:52:20.439108 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:52:20.439107 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:52:21.274131 - -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-18 11:52:21.894011 - -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:52:22.232136 - -[87] Log opened at 2024-10-18 11:52:22.259037 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:52:23.336657 - -[86] Log opened at 2024-10-18 11:53:39.842472 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:53:42.036461 - -[86] Log opened at 2024-10-18 11:53:42.211577 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] Log opened at 2024-10-18 11:53:42.253311 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:53:42.840110 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:53:43.269328 - -[85] Log opened at 2024-10-18 11:53:43.464133 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[88] Log opened at 2024-10-18 11:53:43.473359 -[79] Log opened at 2024-10-18 11:53:43.473359 -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-18 11:53:44.306159 - -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:53:44.633493 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:53:45.271173 - -[87] Log opened at 2024-10-18 11:54:52.800361 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:54:54.945702 - -[87] Log opened at 2024-10-18 11:54:55.085950 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] Log opened at 2024-10-18 11:54:55.128690 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:54:55.714786 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:54:56.136954 - -[80] Log opened at 2024-10-18 11:54:56.170495 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] Log opened at 2024-10-18 11:54:56.253397 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[89] Log opened at 2024-10-18 11:54:56.253619 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-18 11:54:57.087202 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:54:57.710797 - -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:54:58.076503 - -[85] Log opened at 2024-10-18 11:57:41.883729 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:57:44.067041 - -[85] Log opened at 2024-10-18 11:57:44.260601 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 11:57:44.295353 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:57:44.889314 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:57:45.296208 - -[76] Log opened at 2024-10-18 11:57:45.328479 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:57:45.419913 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] Log opened at 2024-10-18 11:57:45.420142 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:57:46.251175 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-18 11:57:46.838239 - -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-18 11:57:47.178620 - -[78] Log opened at 2024-10-18 11:57:47.210663 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:57:48.282707 - -[84] Log opened at 2024-10-18 11:58:12.650487 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:58:14.790393 - -[84] Log opened at 2024-10-18 11:58:14.914445 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] Log opened at 2024-10-18 11:58:14.961127 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:58:15.543369 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:58:15.964629 - -[91] Log opened at 2024-10-18 11:58:15.998121 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:58:16.075503 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] Log opened at 2024-10-18 11:58:16.078866 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:58:16.902323 - -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 11:58:17.509179 - -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:58:17.847130 - -[79] Log opened at 2024-10-18 11:58:17.878777 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:58:18.973939 - -[78] Log opened at 2024-10-18 11:58:40.408317 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:58:42.559993 - -[78] Log opened at 2024-10-18 11:58:42.705915 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] Log opened at 2024-10-18 11:58:42.747143 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:58:43.335024 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-18 11:58:43.754738 - -[86] Log opened at 2024-10-18 11:58:43.781660 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:58:43.863455 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] Log opened at 2024-10-18 11:58:43.863831 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 11:58:44.687789 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:58:45.275573 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 11:58:45.698726 - -[80] Log opened at 2024-10-18 11:58:45.731208 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. ->>>>>>> dev/presu_cliente_v2 -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[80] Log closed at 2024-10-18 12:29:57.375835 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:29:58.003606 - -[86] Log opened at 2024-10-18 12:30:02.680985 -======= -[80] Log closed at 2024-10-18 11:58:46.833021 - -[91] Log opened at 2024-10-18 11:58:50.306260 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 11:58:52.424471 - -[91] Log opened at 2024-10-18 11:58:52.551625 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] Log opened at 2024-10-18 11:58:52.599572 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 11:58:53.180080 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:58:53.680952 - -[93] Log opened at 2024-10-18 11:58:53.707193 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] Log opened at 2024-10-18 11:58:53.784800 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] Log opened at 2024-10-18 11:58:53.791247 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:58:54.611157 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-18 11:58:55.223484 - -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-18 11:58:55.562550 - -[79] Log opened at 2024-10-18 11:58:55.591101 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:58:56.716293 - -[86] Log opened at 2024-10-18 11:59:15.360991 ->>>>>>> dev/presu_cliente_v2 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[86] Log closed at 2024-10-18 12:30:03.726548 - -[86] Log opened at 2024-10-18 12:30:03.750137 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:30:04.385040 - -[86] Log opened at 2024-10-18 12:30:04.455006 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:30:04.456494 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[86] Log closed at 2024-10-18 11:59:17.515575 - -[86] Log opened at 2024-10-18 11:59:17.641350 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] Log opened at 2024-10-18 11:59:17.676927 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:59:18.269953 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:59:18.679191 - -[78] Log opened at 2024-10-18 11:59:18.782733 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] Log opened at 2024-10-18 11:59:18.794568 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] Log opened at 2024-10-18 11:59:18.794998 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:59:19.627448 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-18 11:59:20.242741 - -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 11:59:20.581067 - -[80] Log opened at 2024-10-18 11:59:20.606930 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 11:59:21.688838 - -[79] Log opened at 2024-10-18 11:59:29.377784 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:59:31.551365 - -[79] Log opened at 2024-10-18 11:59:31.660873 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 11:59:31.705019 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 11:59:32.290339 - ->>>>>>> dev/presu_cliente_v2 -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[87] Log closed at 2024-10-18 12:30:05.223824 - -======= -[87] Log closed at 2024-10-18 11:59:32.735244 - -[85] Log opened at 2024-10-18 11:59:32.759390 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] Log opened at 2024-10-18 11:59:32.837564 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 11:59:32.837821 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 11:59:33.667711 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-18 11:59:34.270934 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 11:59:34.609577 - -[86] Log opened at 2024-10-18 11:59:34.639063 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' ->>>>>>> dev/presu_cliente_v2 -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[86] Log closed at 2024-10-18 12:30:05.861965 - -[95] Log opened at 2024-10-18 12:47:00.852896 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:47:01.874178 - -[95] Log opened at 2024-10-18 12:47:01.908421 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:47:02.538935 - -[24] Log opened at 2024-10-18 12:47:02.614814 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:47:02.616937 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 11:59:35.741066 - -[80] Log opened at 2024-10-18 12:00:01.051153 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:00:03.206642 - -[80] Log opened at 2024-10-18 12:00:03.352082 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] Log opened at 2024-10-18 12:00:03.381172 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:00:03.981647 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:00:04.410410 - -[79] Log opened at 2024-10-18 12:00:04.435121 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] Log opened at 2024-10-18 12:00:04.516976 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:00:04.517188 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). ->>>>>>> dev/presu_cliente_v2 -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[95] Log closed at 2024-10-18 12:47:03.386693 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 12:47:04.005228 - -[81] Log opened at 2024-10-18 12:47:25.077111 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:47:26.104427 - -[81] Log opened at 2024-10-18 12:47:26.127763 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:47:26.760044 - -[82] Log opened at 2024-10-18 12:47:26.834024 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 12:47:26.836487 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 12:47:27.602381 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 12:47:28.246327 - -[94] Log opened at 2024-10-18 12:59:30.350575 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:59:31.366152 - -[94] Log opened at 2024-10-18 12:59:31.399970 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:59:32.031034 - -[87] Log opened at 2024-10-18 12:59:32.101731 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:59:32.106999 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:59:32.877463 - -======= -[95] Log closed at 2024-10-18 12:00:05.347025 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-18 12:00:05.956290 - -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-18 12:00:06.395865 - -[87] Log opened at 2024-10-18 12:00:06.426666 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). ->>>>>>> dev/presu_cliente_v2 -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[87] Log closed at 2024-10-18 12:59:33.488061 - -[29] Log opened at 2024-10-18 13:00:31.738210 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 13:00:32.777894 - -[29] Log opened at 2024-10-18 13:00:32.807055 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 13:00:33.436246 - -[81] Log opened at 2024-10-18 13:00:33.506767 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 13:00:33.516669 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:00:33.582353 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:00:34.293723 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:00:34.454294 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 13:00:34.926795 - -[94] Log opened at 2024-10-18 13:01:14.496453 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:01:15.511393 - -[94] Log opened at 2024-10-18 13:01:15.542003 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:01:16.171609 - -[94] Log opened at 2024-10-18 13:01:16.242334 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 13:01:16.248524 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] Log opened at 2024-10-18 13:01:16.314795 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:01:17.017493 - -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:01:17.190211 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:01:17.629359 - -[29] Log opened at 2024-10-18 13:01:40.311159 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 13:01:41.337790 - -[29] Log opened at 2024-10-18 13:01:41.359879 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 13:01:41.988992 - -[28] Log opened at 2024-10-18 13:01:42.057703 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:01:42.065738 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] Log opened at 2024-10-18 13:01:42.100096 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:01:42.833931 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-18 13:01:42.975063 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:01:43.445675 - -[95] Log opened at 2024-10-18 13:01:50.119120 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[87] Log closed at 2024-10-18 12:00:07.559993 - -[86] Log opened at 2024-10-18 12:01:08.258525 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:01:10.379933 - -[86] Log opened at 2024-10-18 12:01:10.543779 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] Log opened at 2024-10-18 12:01:10.579084 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:01:11.171840 - -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:01:11.581478 - -[80] Log opened at 2024-10-18 12:01:11.606442 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:01:11.682306 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] Log opened at 2024-10-18 12:01:11.683118 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). ->>>>>>> dev/presu_cliente_v2 -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:01:50.996112 - -[81] Log opened at 2024-10-18 13:02:13.345317 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 13:02:14.371885 - -[81] Log opened at 2024-10-18 13:02:14.398969 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 13:02:15.026991 - -[97] Log opened at 2024-10-18 13:02:15.096301 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 13:02:15.106539 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:02:15.128682 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:02:15.875245 -======= -[95] Log closed at 2024-10-18 12:01:12.508014 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-18 12:01:13.097316 - -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-18 12:01:13.436437 - -[91] Log opened at 2024-10-18 12:01:13.463824 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:01:14.540646 - -[87] Log opened at 2024-10-18 12:02:55.734318 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:02:57.902921 - -[87] Log opened at 2024-10-18 12:02:58.057728 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:02:58.099708 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:02:58.686877 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:02:59.119699 - -[97] Log opened at 2024-10-18 12:02:59.146766 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:02:59.241873 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[86] Log opened at 2024-10-18 12:02:59.241873 -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:03:00.068834 ->>>>>>> dev/presu_cliente_v2 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -<<<<<<< HEAD -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:02:16.499767 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:03:00.675631 - -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:03:01.014618 - -[92] Log opened at 2024-10-18 12:03:01.047788 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:03:02.127625 - -[91] Log opened at 2024-10-18 12:03:40.504790 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:03:42.671141 - -[91] Log opened at 2024-10-18 12:03:42.821081 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 12:03:42.860119 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:03:43.451860 - ->>>>>>> dev/presu_cliente_v2 -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[87] Log closed at 2024-10-18 13:02:16.965472 - -[28] Log opened at 2024-10-18 13:02:37.989701 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:02:39.021925 - -[28] Log opened at 2024-10-18 13:02:39.047857 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:02:39.676523 - -[95] Log opened at 2024-10-18 13:02:39.743400 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:02:39.750219 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:02:39.780452 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:02:40.516934 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:02:41.133818 - -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:02:41.521088 - -[98] Log opened at 2024-10-18 13:15:24.066338 -======= -[87] Log closed at 2024-10-18 12:03:43.867632 - -[94] Log opened at 2024-10-18 12:03:43.894781 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] Log opened at 2024-10-18 12:03:43.975660 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:03:43.978130 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-18 12:03:44.805548 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:03:45.395630 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:03:45.733866 - -[90] Log opened at 2024-10-18 12:03:45.767060 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-18 12:03:46.864799 - -[97] Log opened at 2024-10-18 12:03:48.830766 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:03:50.943204 - -[97] Log opened at 2024-10-18 12:03:51.097724 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] Log opened at 2024-10-18 12:03:51.155988 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:03:51.726421 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:03:52.161907 - -[91] Log opened at 2024-10-18 12:03:52.242267 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] Log opened at 2024-10-18 12:03:52.264343 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] Log opened at 2024-10-18 12:03:52.268070 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-18 12:03:53.091812 - -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:03:53.680586 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 12:03:54.019593 - -[86] Log opened at 2024-10-18 12:03:54.052147 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:03:55.128458 - -[98] Log opened at 2024-10-18 12:04:08.001077 ->>>>>>> dev/presu_cliente_v2 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[98] Log closed at 2024-10-18 13:15:25.093922 - -[98] Log opened at 2024-10-18 13:15:25.128185 -======= -[98] Log closed at 2024-10-18 12:04:15.339748 - -[95] Log opened at 2024-10-18 12:04:56.159764 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:04:58.281412 - -[95] Log opened at 2024-10-18 12:04:58.426905 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] Log opened at 2024-10-18 12:04:58.463128 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:04:59.057136 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-18 12:04:59.482896 - -[97] Log opened at 2024-10-18 12:04:59.510612 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:04:59.598536 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] Log opened at 2024-10-18 12:04:59.602930 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:05:00.429807 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:05:01.053114 - -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:05:01.392068 - -[92] Log opened at 2024-10-18 12:05:01.420798 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:05:02.504767 - -[98] Log opened at 2024-10-18 12:07:54.887662 ->>>>>>> dev/presu_cliente_v2 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[98] Log closed at 2024-10-18 13:15:25.756565 - -[81] Log opened at 2024-10-18 13:15:25.828847 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] Log opened at 2024-10-18 13:15:25.832396 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:15:25.860679 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-18 13:15:26.601913 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 13:15:27.221635 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:15:27.587576 - -[86] Log opened at 2024-10-18 13:16:04.962086 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:16:05.985229 - -[86] Log opened at 2024-10-18 13:16:06.010436 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[98] Log closed at 2024-10-18 12:07:57.055475 - -[98] Log opened at 2024-10-18 12:07:57.203271 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] Log opened at 2024-10-18 12:07:57.243404 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-18 12:07:57.831726 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-18 12:07:58.244350 - -[95] Log opened at 2024-10-18 12:07:58.270642 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 12:07:58.348099 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] Log opened at 2024-10-18 12:07:58.348771 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:07:59.174528 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:07:59.763970 - -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 12:08:00.102757 - -[87] Log opened at 2024-10-18 12:08:00.129530 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:08:01.210218 - -[97] Log opened at 2024-10-18 12:08:05.845270 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:08:08.007924 - -[97] Log opened at 2024-10-18 12:08:08.131888 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] Log opened at 2024-10-18 12:08:08.167212 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:08:08.760196 - -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:08:09.186702 - -[92] Log opened at 2024-10-18 12:08:09.212499 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:08:09.286909 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] Log opened at 2024-10-18 12:08:09.295776 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). ->>>>>>> dev/presu_cliente_v2 -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[86] Log closed at 2024-10-18 13:16:06.639614 - -[87] Log opened at 2024-10-18 13:16:06.726879 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:16:06.728964 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 13:16:06.741523 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:16:07.499841 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:16:08.120038 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:16:08.500371 - -[81] Log opened at 2024-10-18 13:16:47.766982 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 13:16:48.808422 - -[81] Log opened at 2024-10-18 13:16:48.835565 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 13:16:49.464638 - -[24] Log opened at 2024-10-18 13:16:49.537649 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] Log opened at 2024-10-18 13:16:49.541113 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:16:49.587942 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-18 13:16:50.309775 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:16:50.960633 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:16:51.341189 - -[86] Log opened at 2024-10-18 13:17:13.990479 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:17:15.002769 - -[86] Log opened at 2024-10-18 13:17:15.030279 -======= -[86] Log closed at 2024-10-18 12:08:10.114502 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:08:10.703460 - -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 12:08:11.034276 - -[98] Log opened at 2024-10-18 12:08:11.069178 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-18 12:08:12.164762 - -[94] Log opened at 2024-10-18 12:08:32.232209 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:08:39.583334 - -[95] Log opened at 2024-10-18 12:08:46.099046 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:08:49.664959 - -[100] Log opened at 2024-10-18 12:08:51.217769 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 12:08:59.762289 - -[100] Log opened at 2024-10-18 12:09:01.029571 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 12:09:10.139833 - -[87] Log opened at 2024-10-18 12:09:36.976840 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:09:45.858566 - -[87] Log opened at 2024-10-18 12:09:47.961084 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:09:57.350019 - -[97] Log opened at 2024-10-18 12:10:07.100046 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:10:10.811708 - -[86] Log opened at 2024-10-18 12:10:51.016244 ->>>>>>> dev/presu_cliente_v2 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[86] Log closed at 2024-10-18 13:17:15.662952 - -[95] Log opened at 2024-10-18 13:17:15.731868 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:17:15.743678 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] Log opened at 2024-10-18 13:17:15.763078 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:17:16.517375 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:17:17.154059 - -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:17:17.526067 - -[24] Log opened at 2024-10-18 13:19:00.391040 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:01.401553 - -[24] Log opened at 2024-10-18 13:19:01.434699 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:02.063624 - -[94] Log opened at 2024-10-18 13:19:02.135499 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:19:02.141418 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] Log opened at 2024-10-18 13:19:02.156199 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:02.912866 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:19:03.557736 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:19:04.040251 - -[24] Log opened at 2024-10-18 13:19:04.122412 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:05.147284 - -[94] Log opened at 2024-10-18 13:19:05.167446 -======= -[86] Log closed at 2024-10-18 12:11:00.497763 - -[92] Log opened at 2024-10-18 12:11:42.597097 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:11:52.250893 - -[101] Log opened at 2024-10-18 12:12:15.654666 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 12:12:19.252477 - -[98] Log opened at 2024-10-18 12:12:23.077255 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-18 12:12:32.523213 - -[98] Log opened at 2024-10-18 12:12:35.447469 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-18 12:12:44.891672 - -[94] Log opened at 2024-10-18 12:12:50.148120 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:12:53.863795 - -[95] Log opened at 2024-10-18 12:13:22.923866 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:13:31.900508 - -[87] Log opened at 2024-10-18 12:13:38.943340 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:13:41.124910 - -[87] Log opened at 2024-10-18 12:13:41.236912 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] Log opened at 2024-10-18 12:13:41.288023 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 12:13:41.868724 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 12:13:42.289880 - -[101] Log opened at 2024-10-18 12:13:42.315544 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 12:13:42.387296 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] Log opened at 2024-10-18 12:13:42.397860 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 12:13:43.225110 - -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 12:13:43.817561 - -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:13:44.154930 - -[92] Log opened at 2024-10-18 12:13:44.190404 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:13:45.297253 - -[94] Log opened at 2024-10-18 12:13:59.430537 ->>>>>>> dev/presu_cliente_v2 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[94] Log closed at 2024-10-18 13:19:05.797588 - -[94] Log opened at 2024-10-18 13:19:05.864125 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:19:05.869907 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] Log opened at 2024-10-18 13:19:05.901794 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:06.638175 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:19:07.283760 - -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 13:19:07.777588 - -[24] Log opened at 2024-10-18 13:19:08.125771 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:09.134567 - -[94] Log opened at 2024-10-18 13:19:09.154195 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:19:09.784808 - -[94] Log opened at 2024-10-18 13:19:09.859018 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:19:09.863522 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:19:09.902417 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:10.633481 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:19:11.204842 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:19:11.238142 - -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:19:11.733998 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:12.240325 - -[86] Log opened at 2024-10-18 13:19:12.260799 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:19:12.891273 - -[86] Log opened at 2024-10-18 13:19:12.957386 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:19:12.964938 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:19:12.991585 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:19:13.739645 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:19:14.361786 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:19:14.849841 - -[82] Log opened at 2024-10-18 13:19:46.388911 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:19:47.429360 - -[82] Log opened at 2024-10-18 13:19:47.458661 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:19:48.088981 - -[99] Log opened at 2024-10-18 13:19:48.156385 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:19:48.160511 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] Log opened at 2024-10-18 13:19:48.193268 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:19:48.935880 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:19:49.559943 - -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 13:19:49.945727 - -[28] Log opened at 2024-10-18 13:20:39.644496 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:20:40.646158 - -[28] Log opened at 2024-10-18 13:20:40.669540 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:20:41.298930 - -[87] Log opened at 2024-10-18 13:20:41.372809 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:20:41.374503 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:20:41.402625 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:20:42.140964 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:20:42.739297 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:20:43.098240 - -[86] Log opened at 2024-10-18 13:21:39.741609 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:21:40.804527 - -[86] Log opened at 2024-10-18 13:21:40.836169 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:21:41.466425 - -[97] Log opened at 2024-10-18 13:21:41.533265 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 13:21:41.542242 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:21:41.577080 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:21:42.311340 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:21:42.942057 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:21:43.308632 - -[99] Log opened at 2024-10-18 13:22:17.977603 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:22:19.010209 - -[99] Log opened at 2024-10-18 13:22:19.031866 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:22:19.662035 - -[100] Log opened at 2024-10-18 13:22:19.726778 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:22:19.736987 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] Log opened at 2024-10-18 13:22:19.768404 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:22:20.507019 - -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 13:22:21.121659 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:22:21.513978 - -[28] Log opened at 2024-10-18 13:22:58.128815 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:22:59.163728 - -[28] Log opened at 2024-10-18 13:22:59.190703 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:22:59.819586 - -[87] Log opened at 2024-10-18 13:22:59.893439 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:22:59.895732 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:22:59.924843 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:23:00.661416 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:23:01.283701 - -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:23:01.668363 - -[95] Log opened at 2024-10-18 13:23:34.258354 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:23:35.294242 - -[95] Log opened at 2024-10-18 13:23:35.323025 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:23:35.953403 - -[86] Log opened at 2024-10-18 13:23:36.022680 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 13:23:36.033919 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] Log opened at 2024-10-18 13:23:36.062667 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:23:36.802562 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:23:37.457207 - -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:23:37.834683 - -[82] Log opened at 2024-10-18 13:23:50.333298 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:23:51.367106 - -[82] Log opened at 2024-10-18 13:23:51.391840 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:23:52.022985 - -[94] Log opened at 2024-10-18 13:23:52.103462 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:23:52.103788 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] Log opened at 2024-10-18 13:23:52.133121 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:23:52.876220 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:23:53.524635 - -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 13:23:53.898230 - -[99] Log opened at 2024-10-18 13:24:13.003131 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:24:14.043605 - -[99] Log opened at 2024-10-18 13:24:14.067973 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:24:14.698164 - -[24] Log opened at 2024-10-18 13:24:14.764082 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:24:14.771583 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] Log opened at 2024-10-18 13:24:14.803392 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:24:15.545573 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:24:16.186645 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:24:16.584614 - -[28] Log opened at 2024-10-18 13:30:24.240435 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:30:25.283627 - -[28] Log opened at 2024-10-18 13:30:25.315454 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:30:25.945035 - -[95] Log opened at 2024-10-18 13:30:26.011148 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:30:26.018440 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] Log opened at 2024-10-18 13:30:26.046075 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:30:26.787375 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:30:27.413465 - -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-18 13:30:27.804722 - -[97] Log opened at 2024-10-18 13:30:55.495156 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:30:56.514488 - -[97] Log opened at 2024-10-18 13:30:56.531470 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:30:57.161478 - -[82] Log opened at 2024-10-18 13:30:57.229231 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] Log opened at 2024-10-18 13:30:57.238648 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:30:57.266438 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:30:58.009192 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:30:58.629888 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:30:58.992394 - -[100] Log opened at 2024-10-18 13:31:02.648616 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 13:31:03.673624 - -[100] Log opened at 2024-10-18 13:31:03.695101 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 13:31:04.324842 - -[24] Log opened at 2024-10-18 13:31:04.398988 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 13:31:04.410102 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:31:04.429890 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:31:05.184890 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:31:05.815632 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:31:06.193202 - -[94] Log opened at 2024-10-18 13:31:17.688005 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:31:18.711378 - -[94] Log opened at 2024-10-18 13:31:18.737918 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:31:19.367460 - -[97] Log opened at 2024-10-18 13:31:19.439814 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:31:19.442499 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:31:19.478095 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:31:20.216910 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:31:20.843333 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:31:21.225874 - -[101] Log opened at 2024-10-18 13:34:46.606237 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:34:47.625335 - -[101] Log opened at 2024-10-18 13:34:47.651627 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:34:48.280545 - -[100] Log opened at 2024-10-18 13:34:48.346495 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] Log opened at 2024-10-18 13:34:48.356656 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] Log opened at 2024-10-18 13:34:48.394037 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:34:49.133993 - -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 13:34:49.756670 - -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:34:50.147688 - -[28] Log opened at 2024-10-18 13:34:56.386261 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:34:57.261155 - -[24] Log opened at 2024-10-18 13:35:19.304500 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:35:20.338269 - -[24] Log opened at 2024-10-18 13:35:20.361394 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:35:20.991855 - -[97] Log opened at 2024-10-18 13:35:21.062546 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:35:21.074966 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:35:21.102213 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:35:21.843243 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:35:22.480496 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:35:22.859315 - -[101] Log opened at 2024-10-18 13:35:31.555119 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:35:32.567880 - -[28] Log opened at 2024-10-18 13:35:32.585728 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:35:33.214865 - -[28] Log opened at 2024-10-18 13:35:33.281325 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] Log opened at 2024-10-18 13:35:33.289443 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 13:35:33.320667 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:35:34.064059 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:35:34.703455 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:35:35.075319 - -[101] Log opened at 2024-10-18 13:35:37.215728 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:35:38.195634 - -[102] Log opened at 2024-10-18 13:36:09.057208 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:36:10.077528 - -[102] Log opened at 2024-10-18 13:36:10.107140 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:36:10.735988 - -[24] Log opened at 2024-10-18 13:36:10.803191 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] Log opened at 2024-10-18 13:36:10.811526 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] Log opened at 2024-10-18 13:36:10.843356 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:36:11.581509 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:36:12.201411 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:36:12.575345 - -[94] Log opened at 2024-10-18 13:36:19.721573 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:36:20.814847 - -[87] Log opened at 2024-10-18 13:36:59.000852 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:37:00.020227 - -[87] Log opened at 2024-10-18 13:37:00.047704 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:37:00.676796 - -[97] Log opened at 2024-10-18 13:37:00.754011 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:37:00.756524 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:37:00.790414 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:37:01.532726 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:37:02.157061 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:37:02.541397 - -[87] Log opened at 2024-10-18 13:37:05.051157 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:37:06.177790 - -[101] Log opened at 2024-10-18 13:37:44.748507 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:37:45.769412 - -[101] Log opened at 2024-10-18 13:37:45.796676 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:37:46.427622 - -[28] Log opened at 2024-10-18 13:37:46.494975 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] Log opened at 2024-10-18 13:37:46.504717 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 13:37:46.535911 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:37:47.276447 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:37:47.894996 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:37:48.268615 - -[101] Log opened at 2024-10-18 13:37:52.045670 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:37:53.134183 - -[102] Log opened at 2024-10-18 13:39:27.562251 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:39:28.586749 - -[102] Log opened at 2024-10-18 13:39:28.620239 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:39:29.249482 - -[99] Log opened at 2024-10-18 13:39:29.318399 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] Log opened at 2024-10-18 13:39:29.323467 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:39:29.357857 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:39:30.099051 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:39:30.721928 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:39:31.086103 - -[102] Log opened at 2024-10-18 13:39:32.865837 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:39:33.964002 - -[87] Log opened at 2024-10-18 13:40:01.413240 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:40:02.453317 - -[87] Log opened at 2024-10-18 13:40:02.477448 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:40:03.106655 - -[97] Log opened at 2024-10-18 13:40:03.179079 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:40:03.184070 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:40:03.217780 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:40:03.952481 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:40:04.595056 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:40:04.966356 - -[87] Log opened at 2024-10-18 13:40:07.952900 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:40:08.955480 - -[28] Log opened at 2024-10-18 13:50:04.361067 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:50:05.398246 - -[28] Log opened at 2024-10-18 13:50:05.432816 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:50:06.063448 - -[101] Log opened at 2024-10-18 13:50:06.143809 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:50:06.145412 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 13:50:06.171902 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:50:06.913936 - -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 13:50:07.558327 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:50:07.945621 - -[24] Log opened at 2024-10-18 13:50:22.041880 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:50:23.066866 - -[24] Log opened at 2024-10-18 13:50:23.091429 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:50:23.721108 - -[102] Log opened at 2024-10-18 13:50:23.790851 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:50:23.796999 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] Log opened at 2024-10-18 13:50:23.830252 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:50:24.561824 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:50:25.189207 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:50:25.574162 - -[94] Log opened at 2024-10-18 13:50:32.781207 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:50:33.820272 - -[94] Log opened at 2024-10-18 13:50:33.844429 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:50:34.474376 - -[97] Log opened at 2024-10-18 13:50:34.546156 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] Log opened at 2024-10-18 13:50:34.550605 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:50:34.584489 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:50:35.315045 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:50:35.939454 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:50:36.316942 - -[82] Log opened at 2024-10-18 13:50:39.537560 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:50:40.522658 - -[82] Log opened at 2024-10-18 13:50:40.527726 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:50:41.505910 - -[82] Log opened at 2024-10-18 13:50:43.603086 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:50:44.593188 - -[82] Log opened at 2024-10-18 13:50:44.598474 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:50:45.596220 - -[87] Log opened at 2024-10-18 13:52:18.443071 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:52:19.452235 - -[87] Log opened at 2024-10-18 13:52:19.484337 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:52:20.113792 - -[95] Log opened at 2024-10-18 13:52:20.184555 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] Log opened at 2024-10-18 13:52:20.189266 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] Log opened at 2024-10-18 13:52:20.226883 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-18 13:52:20.954275 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 13:52:21.591661 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:52:21.973760 - -[102] Log opened at 2024-10-18 13:52:28.574214 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:52:29.582766 - -[102] Log opened at 2024-10-18 13:52:29.613125 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:52:30.241726 - -[99] Log opened at 2024-10-18 13:52:30.308921 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] Log opened at 2024-10-18 13:52:30.315891 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] Log opened at 2024-10-18 13:52:30.354853 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:52:31.083022 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:52:31.703543 - -[102] Log opened at 2024-10-18 13:52:31.752122 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-18 13:52:32.078853 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:52:32.757128 - -[99] Log opened at 2024-10-18 13:52:32.767520 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:52:33.749725 - -[82] Log opened at 2024-10-18 13:52:43.047687 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:52:44.058862 - -[82] Log opened at 2024-10-18 13:52:44.085444 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-18 13:52:44.714148 - -[24] Log opened at 2024-10-18 13:52:44.784026 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] Log opened at 2024-10-18 13:52:44.796788 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] Log opened at 2024-10-18 13:52:44.814101 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -======= -[94] Log closed at 2024-10-18 12:14:06.565656 - -[95] Log opened at 2024-10-18 12:14:34.860851 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_list -i 1 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_list -i 2 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_list -i 3 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 293 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[95] [Step Debug] -> - -[95] [Step Debug] <- run -i 6 -[95] [Step Debug] -> - -[95] [Step Debug] <- stack_get -i 7 -[95] [Step Debug] -> - -[95] [Step Debug] <- eval -i 8 -- JGNvc3Rl -[95] [Step Debug] -> - -[95] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[95] [Step Debug] -> - -[95] [Step Debug] <- eval -i 10 -- JHBlc28= -[95] [Step Debug] -> - -[95] [Step Debug] <- context_names -i 11 -d 0 -[95] [Step Debug] -> - -[95] [Step Debug] <- context_get -i 12 -d 0 -c 0 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_list -i 13 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_remove -i 14 -d 950001 -[95] [Step Debug] -> - -[95] [Step Debug] <- run -i 15 -[95] [Step Debug] -> - -[95] [Step Debug] <- stack_get -i 16 -[95] [Step Debug] -> - -[95] [Step Debug] <- eval -i 17 -- JGNvc3Rl -[95] [Step Debug] -> - -[95] [Step Debug] <- eval -i 18 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[95] [Step Debug] -> - -[95] [Step Debug] <- eval -i 19 -- JHBlc28= -[95] [Step Debug] -> - -[95] [Step Debug] <- context_names -i 20 -d 0 -[95] [Step Debug] -> - -[95] [Step Debug] <- run -i 21 -[95] [Step Debug] -> - -[95] [Step Debug] <- stop -i 22 -[95] [Step Debug] -> - -[95] Log closed at 2024-10-18 12:14:43.886931 - -[100] Log opened at 2024-10-18 12:14:58.461155 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 1 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 2 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 3 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 354 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[100] [Step Debug] -> - -[100] [Step Debug] <- run -i 6 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 7 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 8 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 10 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 11 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 12 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 13 -d 0 -c 1 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 14 -d 0 -c 2 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 15 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 16 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 17 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 18 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 19 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 20 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 22 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 23 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 24 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 25 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 26 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 27 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 29 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 30 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 31 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 32 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 33 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 34 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 35 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 37 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_remove -i 38 -d 1000001 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 39 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_set -i 40 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1554 -[100] [Step Debug] -> - -[100] [Step Debug] <- run -i 41 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 42 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 43 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 44 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 45 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 46 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 47 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 48 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 49 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 50 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 51 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 52 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 53 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 54 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 55 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 56 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 57 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 58 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 59 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 60 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 61 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 62 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 63 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 64 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 65 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 66 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 67 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 68 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 69 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 70 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 71 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 72 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 73 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 74 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 75 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 76 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 77 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 78 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 79 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 80 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 81 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 82 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 83 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 84 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 85 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 86 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 87 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 88 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 89 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 90 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 91 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 92 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 93 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 94 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 95 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 96 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 97 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 98 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 99 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 100 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 101 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 102 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 103 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 104 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 105 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 106 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 107 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 108 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 109 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 110 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 111 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 112 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 113 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 114 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 115 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 116 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 117 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 118 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 119 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 120 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 121 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 122 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 123 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 124 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 125 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 126 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 127 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 128 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 129 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 130 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 131 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 132 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 133 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 134 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 135 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 136 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 137 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 138 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 139 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 140 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 141 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 142 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 143 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 144 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 145 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 146 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 147 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 148 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 149 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 150 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 151 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 152 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 153 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 154 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 155 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 156 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 157 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 158 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 159 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 160 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 161 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 162 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 163 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 164 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 165 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 166 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 167 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 168 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 169 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 170 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 171 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 172 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 173 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 174 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 175 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 176 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 177 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 178 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 179 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 180 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 181 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 182 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 183 -d 0 -c 1 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 184 -d 0 -c 2 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 185 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_remove -i 186 -d 1000003 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 187 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 188 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 189 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 190 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 191 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 192 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 193 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 194 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 195 -d 0 -c 1 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 196 -d 0 -c 2 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 197 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_set -i 198 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2244 -[100] [Step Debug] -> - -[100] [Step Debug] <- step_over -i 199 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 200 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 201 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 202 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 203 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 204 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 205 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_list -i 206 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_remove -i 207 -d 1000004 -[100] [Step Debug] -> - -[100] [Step Debug] <- breakpoint_set -i 208 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2247 -[100] [Step Debug] -> - -[100] [Step Debug] <- run -i 209 -[100] [Step Debug] -> - -[100] [Step Debug] <- stack_get -i 210 -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 211 -- JGNvc3Rl -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 212 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[100] [Step Debug] -> - -[100] [Step Debug] <- eval -i 213 -- JHBlc28= -[100] [Step Debug] -> - -[100] [Step Debug] <- context_names -i 214 -d 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- context_get -i 215 -d 0 -c 0 -[100] [Step Debug] -> - -[100] [Step Debug] <- run -i 216 -[100] [Step Debug] -> - -[100] [Step Debug] <- stop -i 217 -[100] [Step Debug] -> - -[100] Log closed at 2024-10-18 12:17:49.585695 - -[102] Log opened at 2024-10-18 12:17:52.082699 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_list -i 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_list -i 2 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_list -i 3 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2247 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 5 -t exception -x * -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 6 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 7 -[102] [Step Debug] -> - -[102] [Step Debug] <- eval -i 8 -- JGNvc3Rl -[102] [Step Debug] -> - -[102] [Step Debug] <- eval -i 9 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[102] [Step Debug] -> - -[102] [Step Debug] <- eval -i 10 -- JHBlc28= -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 11 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 12 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 13 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 14 -[102] [Step Debug] -> - -[102] [Step Debug] <- eval -i 15 -- JGNvc3Rl -[102] [Step Debug] -> - -[102] [Step Debug] <- eval -i 16 -- ICRyZXR1cm5fZGF0YVsncGVzbyddWyRpXQ== -[102] [Step Debug] -> - -[102] [Step Debug] <- eval -i 17 -- JHBlc28= -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 18 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_list -i 20 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_remove -i 21 -d 1020001 -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 22 -[102] [Step Debug] -> - -[102] [Step Debug] <- stop -i 23 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-18 12:18:03.755563 - -[87] Log opened at 2024-10-18 12:18:15.067003 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_list -i 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_list -i 2 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 3 -t exception -x * -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 4 -[87] [Step Debug] -> - -[87] [Step Debug] <- stop -i 5 -[87] [Step Debug] -> - -[87] Log closed at 2024-10-18 12:18:22.726452 - -[97] Log opened at 2024-10-18 12:18:34.625591 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[97] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] -> - -[97] [Step Debug] <- breakpoint_list -i 1 -[97] [Step Debug] -> - -[97] [Step Debug] <- breakpoint_list -i 2 -[97] [Step Debug] -> - -[97] [Step Debug] <- breakpoint_set -i 3 -t exception -x * -[97] [Step Debug] -> - -[97] [Step Debug] <- run -i 4 -[97] [Step Debug] -> - -[97] [Step Debug] <- stop -i 5 -[97] [Step Debug] -> - -[97] Log closed at 2024-10-18 12:18:42.527330 - -[101] Log opened at 2024-10-18 12:19:39.434731 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). ->>>>>>> dev/presu_cliente_v2 -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -<<<<<<< HEAD -[101] Log closed at 2024-10-18 13:52:45.563282 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-18 13:52:46.208846 - -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-18 13:52:46.583687 - -[102] Log opened at 2024-10-18 13:58:44.014385 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:58:45.031652 - -[99] Log opened at 2024-10-18 13:58:45.068639 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:58:45.698210 - -[99] Log opened at 2024-10-18 13:58:45.779615 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] Log opened at 2024-10-18 13:58:45.781866 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:58:45.831560 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:58:46.546962 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:58:47.150557 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:58:47.557487 - -[102] Log opened at 2024-10-18 13:58:49.337909 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:58:50.379192 - -[99] Log opened at 2024-10-18 13:58:50.402544 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:58:51.032898 - -[99] Log opened at 2024-10-18 13:58:51.102846 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] Log opened at 2024-10-18 13:58:51.108244 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] Log opened at 2024-10-18 13:58:51.121253 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 13:58:51.879172 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-18 13:58:52.489637 - -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-18 13:58:52.860341 -======= -[101] Log closed at 2024-10-18 12:19:41.607696 - -[101] Log opened at 2024-10-18 12:19:41.756509 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] Log opened at 2024-10-18 12:19:41.790349 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-18 12:19:42.384951 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-18 12:19:42.796526 - -[94] Log opened at 2024-10-18 12:19:42.825844 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] Log opened at 2024-10-18 12:19:42.904191 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] Log opened at 2024-10-18 12:19:42.910519 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-18 12:19:43.743917 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-18 12:19:44.349449 - -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-18 12:19:44.692158 - -[100] Log opened at 2024-10-18 12:19:44.722947 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-18 12:19:45.798867 ->>>>>>> dev/presu_cliente_v2 - -[22] Log opened at 2024-10-19 07:30:11.859253 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:30:12.918224 - -[22] Log opened at 2024-10-19 07:30:12.933088 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:30:13.930077 - -[23] Log opened at 2024-10-19 07:30:14.043447 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 07:30:14.731868 - -[24] Log opened at 2024-10-19 07:30:14.861847 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 07:30:15.778845 - -[24] Log opened at 2024-10-19 07:30:16.426654 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 07:30:17.834492 - -[24] Log opened at 2024-10-19 07:30:17.846124 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 07:30:19.056051 - -[24] Log opened at 2024-10-19 07:30:19.128436 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 07:30:19.785250 - -[24] Log opened at 2024-10-19 07:30:19.864190 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-19 07:30:19.883925 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 07:30:20.841421 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 07:30:21.462118 - -[32] Log opened at 2024-10-19 07:30:28.128654 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 07:30:29.888646 - -[32] Log opened at 2024-10-19 07:30:29.987667 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-19 07:30:30.002103 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 07:30:30.645083 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 07:30:31.175799 - -[26] Log opened at 2024-10-19 07:30:31.222380 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-19 07:30:31.228671 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 07:30:31.233139 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 07:30:32.196576 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 07:30:32.816137 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:30:33.180180 - -[23] Log opened at 2024-10-19 07:30:49.844720 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-19 07:30:49.954896 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 07:30:50.792190 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 07:30:50.900025 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 07:30:51.080012 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 07:30:51.156654 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 07:30:51.245264 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-19 07:30:51.327813 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log opened at 2024-10-19 07:30:51.531865 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 07:30:51.540898 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-19 07:30:51.610354 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-19 07:30:51.749265 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-19 07:30:51.854342 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 07:30:51.953856 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:30:52.345396 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:30:52.734565 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 07:30:53.125009 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 07:30:53.525947 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 07:30:53.929970 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 07:30:54.323235 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:30:54.700860 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 07:30:55.074094 - -[35] Log opened at 2024-10-19 07:31:07.626095 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-19 07:31:07.725779 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:31:08.694774 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 07:31:09.093239 - -[38] Log opened at 2024-10-19 07:31:23.480950 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 07:31:24.443361 - -[38] Log opened at 2024-10-19 07:31:24.449481 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 07:31:25.405049 - -[27] Log opened at 2024-10-19 07:32:51.806055 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:32:53.464741 - -[27] Log opened at 2024-10-19 07:32:53.591213 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 07:32:53.621437 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log opened at 2024-10-19 07:32:53.842167 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:32:54.259234 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 07:32:54.761220 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 07:32:55.732573 - -[26] Log opened at 2024-10-19 07:32:55.928717 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 07:32:55.985769 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 07:32:56.591946 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:32:57.200532 - -[23] Log opened at 2024-10-19 07:32:57.315306 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-19 07:32:57.379804 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 07:32:57.379977 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 07:32:58.349106 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 07:32:59.022662 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:32:59.370203 - -[34] Log opened at 2024-10-19 07:33:08.256323 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 07:33:08.359380 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 07:33:09.399029 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 07:33:09.476404 - -[39] Log opened at 2024-10-19 07:33:09.480334 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log opened at 2024-10-19 07:33:09.656144 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log opened at 2024-10-19 07:33:09.694678 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-19 07:33:09.814669 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:33:09.924933 - -[38] Log opened at 2024-10-19 07:33:09.974460 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-19 07:33:10.077003 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-19 07:33:10.210905 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-19 07:33:10.318699 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 07:33:10.490944 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 07:33:10.876118 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 07:33:11.274336 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:33:11.657750 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 07:33:12.082686 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 07:33:12.478356 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 07:33:12.860314 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:33:13.257525 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 07:33:13.657301 - -[34] Log opened at 2024-10-19 07:33:18.385953 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 07:33:18.490437 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 07:33:19.504035 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:33:19.882549 - -[40] Log opened at 2024-10-19 07:34:11.612842 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-19 07:34:11.623986 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-19 07:34:11.636445 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 07:34:11.649780 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log opened at 2024-10-19 07:34:18.598959 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log opened at 2024-10-19 07:34:21.394905 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 07:34:23.406135 - -[23] Log opened at 2024-10-19 07:34:24.403272 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-19 07:34:26.492024 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log opened at 2024-10-19 07:34:28.718380 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:34:34.628989 - -[27] Log opened at 2024-10-19 07:34:34.986403 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 07:34:46.091105 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-19 07:34:58.431075 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 07:35:07.536052 - -[26] Log opened at 2024-10-19 07:35:13.310281 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log opened at 2024-10-19 07:35:14.883902 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log opened at 2024-10-19 07:35:16.102744 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 07:35:17.218147 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 07:35:27.252199 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:35:40.095848 - -[35] Log opened at 2024-10-19 07:35:42.039163 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log opened at 2024-10-19 07:35:44.432665 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 07:35:52.418892 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:36:03.644388 - -[37] Log opened at 2024-10-19 07:36:10.128944 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 07:36:15.578706 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-19 07:36:28.590835 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-19 07:36:41.675869 - -[43] Log opened at 2024-10-19 07:43:30.024885 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 07:43:30.115245 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-19 07:43:31.200755 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-19 07:43:31.371852 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-19 07:43:31.422903 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 07:43:31.486750 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:43:31.698144 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-10-19 07:43:32.159073 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log opened at 2024-10-19 07:43:32.446904 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log opened at 2024-10-19 07:43:32.543313 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log closed at 2024-10-19 07:43:32.544418 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 07:43:32.743378 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log opened at 2024-10-19 07:43:32.806782 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-19 07:43:32.882694 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 07:43:32.933241 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log opened at 2024-10-19 07:43:33.043273 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-19 07:43:33.060714 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-19 07:43:33.164964 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:43:33.330669 - -[27] Log opened at 2024-10-19 07:43:33.331462 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-19 07:43:33.774507 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 07:43:34.167456 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:43:34.570951 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:43:34.956520 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-19 07:43:35.361431 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-19 07:43:35.794664 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:43:36.178255 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 07:43:36.576746 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 07:43:36.972008 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:43:37.351447 - -[45] Log opened at 2024-10-19 07:43:54.410518 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-19 07:43:55.550058 - -[46] Log opened at 2024-10-19 07:44:34.206909 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-19 07:44:34.219100 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 07:44:34.231781 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log opened at 2024-10-19 07:44:36.184913 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log opened at 2024-10-19 07:44:38.604776 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log opened at 2024-10-19 07:44:40.493490 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:44:48.232048 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:45:01.208427 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:45:15.341377 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-19 07:45:27.824886 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-19 07:45:40.664466 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:45:54.331973 - -[41] Log opened at 2024-10-19 07:48:32.657944 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:48:34.391679 - -[41] Log opened at 2024-10-19 07:48:34.611842 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 07:48:34.671300 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:48:35.269791 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:48:35.852851 - -[46] Log opened at 2024-10-19 07:48:35.909040 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-19 07:48:35.987524 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-19 07:48:35.998569 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 07:48:36.986382 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:48:37.554488 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 07:48:37.904344 - -[27] Log opened at 2024-10-19 07:48:47.166986 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:48:48.366960 - -[27] Log opened at 2024-10-19 07:48:48.610817 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 07:48:48.687293 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log opened at 2024-10-19 07:48:49.213730 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-19 07:48:49.317814 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-19 07:48:49.332111 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-19 07:48:49.575228 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-19 07:48:49.613502 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:48:49.707368 - -[37] Log opened at 2024-10-19 07:48:49.721388 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log opened at 2024-10-19 07:48:49.810755 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:48:50.074332 - -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:48:50.451045 - -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 07:48:50.809203 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:48:51.178965 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:48:51.563323 - -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-19 07:48:51.955123 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 07:48:52.355912 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:48:52.724065 - -[27] Log opened at 2024-10-19 07:48:59.981624 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:49:01.094167 - -[35] Log opened at 2024-10-19 07:49:50.710055 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:49:52.405081 - -[35] Log opened at 2024-10-19 07:49:52.609813 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-19 07:49:52.669325 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:49:53.267301 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:49:53.894988 - -[42] Log opened at 2024-10-19 07:49:53.940086 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-19 07:49:54.030346 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 07:49:54.033817 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 07:49:55.034648 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-19 07:49:55.638435 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:49:55.982976 - -[47] Log opened at 2024-10-19 07:49:57.580135 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:49:58.755583 - -[47] Log opened at 2024-10-19 07:50:00.825618 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:50:01.902950 - -[27] Log opened at 2024-10-19 07:54:18.298860 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:54:19.992440 - -[27] Log opened at 2024-10-19 07:54:20.183883 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-19 07:54:20.233991 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:54:20.846900 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:54:21.413880 - -[35] Log opened at 2024-10-19 07:54:21.493492 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-19 07:54:21.577264 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-19 07:54:21.581262 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-19 07:54:22.592693 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:54:23.274919 - -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 07:54:23.615113 - -[22] Log opened at 2024-10-19 07:54:34.567374 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-19 07:54:34.663236 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-19 07:54:35.711699 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-19 07:54:35.749762 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:54:35.791821 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 07:54:35.887746 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log opened at 2024-10-19 07:54:36.146845 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-19 07:54:36.179164 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:54:36.284263 - -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:54:36.820028 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 07:54:37.177596 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 07:54:37.587856 - -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-19 07:54:37.966440 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 07:54:38.410883 - -[35] Log opened at 2024-10-19 07:54:55.467946 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 07:54:56.603701 - -[48] Log opened at 2024-10-19 07:55:27.973339 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-19 07:55:32.644677 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 07:55:40.792928 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 07:55:52.445033 - -[52] Log opened at 2024-10-19 07:56:15.850890 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-19 07:56:29.151855 - -[47] Log opened at 2024-10-19 07:56:46.935452 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:56:59.305683 - -[47] Log opened at 2024-10-19 07:57:02.139355 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:57:15.039603 - -[47] Log opened at 2024-10-19 07:57:15.846281 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:57:29.917662 - -[47] Log opened at 2024-10-19 07:57:31.717805 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:57:48.652406 - -[47] Log opened at 2024-10-19 07:57:50.728704 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 07:58:06.125587 - -[46] Log opened at 2024-10-19 07:59:10.600092 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:59:11.792693 - -[46] Log opened at 2024-10-19 07:59:16.326585 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:59:17.570488 - -[46] Log opened at 2024-10-19 07:59:18.439774 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:59:19.542837 - -[46] Log opened at 2024-10-19 07:59:20.868760 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:59:22.001446 - -[46] Log opened at 2024-10-19 07:59:22.020150 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 07:59:38.201055 - -[51] Log opened at 2024-10-19 07:59:58.527417 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 07:59:59.728516 - -[51] Log opened at 2024-10-19 07:59:59.801514 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 08:00:00.732311 - -[51] Log opened at 2024-10-19 08:00:01.027653 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 08:00:01.935936 - -[27] Log opened at 2024-10-19 08:00:54.519574 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:00:56.291783 - -[27] Log opened at 2024-10-19 08:00:56.497711 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:00:57.724249 - -[50] Log opened at 2024-10-19 08:00:57.765153 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 08:00:57.858466 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-19 08:00:57.859302 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:00:58.847661 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-19 08:00:59.438280 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 08:00:59.777505 - -[22] Log opened at 2024-10-19 08:01:13.568271 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-19 08:01:13.687745 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-19 08:01:14.697599 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 08:01:14.742539 - -[41] Log opened at 2024-10-19 08:01:14.777536 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:01:15.191141 - -[48] Log opened at 2024-10-19 08:01:15.206689 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-19 08:01:15.266240 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 08:01:15.331224 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log opened at 2024-10-19 08:01:15.529722 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 08:01:15.841084 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 08:01:16.220303 - -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 08:01:16.588788 - -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-19 08:01:16.979612 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 08:01:17.347961 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:01:17.712961 - -[51] Log opened at 2024-10-19 08:01:54.979972 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 08:01:54.990146 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 08:01:57.121915 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 08:01:58.481965 - -[47] Log opened at 2024-10-19 08:03:44.742303 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 29 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 11 -[47] [Step Debug] -> - -[47] [Step Debug] -> - -[47] [Step Debug] <- stack_get -i 12 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 13 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_names -i 15 -d 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 18 -n "$plana" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 19 -n "$total_plana" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 20 -n "$linea" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 21 -n "$linea" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 22 -n "$linea" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 23 -n "$total_plana" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 24 -n "$total_plana" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 25 -n "$total_plana" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 26 -d 470002 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 34 -[47] [Step Debug] -> - -[47] [Step Debug] -> - -[47] [Step Debug] <- property_get -i 28 -n "$plana" -d 0 -c 0 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_remove -i 29 -d 470006 -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 30 -[47] [Step Debug] -> - -[47] Log closed at 2024-10-19 08:27:27.922742 - -[41] Log opened at 2024-10-19 08:27:36.153948 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[41] [Step Debug] -> - -[41] [Step Debug] <- run -i 10 -[41] [Step Debug] -> - -[41] Log closed at 2024-10-19 08:27:36.929908 - -[48] Log opened at 2024-10-19 08:27:36.988178 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[48] [Step Debug] -> - -[48] [Step Debug] <- run -i 10 -[48] [Step Debug] -> - -[48] Log closed at 2024-10-19 08:27:37.120521 - -[48] Log opened at 2024-10-19 08:27:37.357010 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[48] [Step Debug] -> - -[52] Log opened at 2024-10-19 08:27:37.382359 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[52] [Step Debug] -> - -[48] [Step Debug] <- run -i 10 -[52] [Step Debug] <- run -i 6 -[41] Log opened at 2024-10-19 08:27:37.487288 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[41] [Step Debug] -> - -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[52] [Step Debug] -> - -[52] Log closed at 2024-10-19 08:27:37.811656 - -[48] [Step Debug] -> - -[48] Log closed at 2024-10-19 08:27:38.244722 - -[35] Log opened at 2024-10-19 08:27:46.347806 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 10 -[41] [Step Debug] <- run -i 10 -[35] [Step Debug] -> - -[35] Log closed at 2024-10-19 08:27:47.015202 - -[35] Log opened at 2024-10-19 08:27:47.111423 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 10 -[35] [Step Debug] -> - -[35] Log closed at 2024-10-19 08:27:47.248712 - -[41] [Step Debug] -> - -[41] Log closed at 2024-10-19 08:27:47.299915 - -[27] Log opened at 2024-10-19 08:27:47.350811 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[51] Log opened at 2024-10-19 08:27:47.376091 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[51] [Step Debug] -> - -[27] [Step Debug] <- run -i 10 -[51] [Step Debug] <- run -i 6 -[22] Log opened at 2024-10-19 08:27:47.473490 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[51] [Step Debug] -> - -[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[51] [Step Debug] -> - -[51] Log closed at 2024-10-19 08:27:47.824740 - -[27] [Step Debug] -> - -[27] Log closed at 2024-10-19 08:27:48.396101 - -[22] [Step Debug] <- stop -i 10 -[22] [Step Debug] -> - -[41] Log opened at 2024-10-19 08:28:43.689718 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 08:28:44.896914 - -[46] Log opened at 2024-10-19 08:29:17.568608 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:29:18.788655 - -[46] Log opened at 2024-10-19 08:29:18.898960 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:29:19.557475 - -[53] Log opened at 2024-10-19 08:29:19.795763 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-19 08:29:19.807580 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-19 08:29:19.891121 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:29:20.755662 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-19 08:29:21.393511 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 08:29:21.808321 - -[27] Log opened at 2024-10-19 08:29:27.149582 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:29:28.408739 - -[47] Log opened at 2024-10-19 08:29:31.636605 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 08:29:32.764580 - -[47] Log opened at 2024-10-19 08:29:32.847371 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 08:29:33.493540 - -[52] Log opened at 2024-10-19 08:29:33.681147 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-19 08:29:33.710505 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-19 08:29:33.763958 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 08:29:34.705822 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-19 08:29:35.346623 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 08:29:35.772472 - -[51] Log opened at 2024-10-19 08:32:43.170945 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-19 08:32:44.368900 - -[47] Log opened at 2024-10-19 08:33:54.132887 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 08:33:56.110665 - -[46] Log opened at 2024-10-19 08:34:01.991429 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:34:03.210464 - -[46] Log opened at 2024-10-19 08:34:03.313334 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:34:03.962477 - -[35] Log opened at 2024-10-19 08:34:04.170027 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-19 08:34:04.176937 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-19 08:34:04.215681 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 08:34:05.134317 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 08:34:05.762385 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-19 08:34:06.186266 - -[27] Log opened at 2024-10-19 08:34:44.873265 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:34:47.085007 - -[46] Log opened at 2024-10-19 08:35:23.066217 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:35:25.229674 - -[41] Log opened at 2024-10-19 08:35:30.775398 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 08:35:31.958565 - -[41] Log opened at 2024-10-19 08:35:32.094402 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 08:35:32.765496 - -[53] Log opened at 2024-10-19 08:35:32.996064 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-19 08:35:33.023823 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 08:35:33.111784 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 08:35:33.972353 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-19 08:35:34.607369 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 08:35:35.031882 - -[27] Log opened at 2024-10-19 08:36:00.203956 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:36:01.432306 - -[47] Log opened at 2024-10-19 08:36:01.526125 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 08:36:02.173417 - -[47] Log opened at 2024-10-19 08:36:02.400199 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-19 08:36:02.408637 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 08:36:02.420954 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-19 08:36:03.334976 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-19 08:36:03.946391 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 08:36:04.333195 - -[41] Log opened at 2024-10-19 08:36:36.528368 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 08:36:37.692720 - -[41] Log opened at 2024-10-19 08:36:37.793495 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 08:36:38.452361 - -[48] Log opened at 2024-10-19 08:36:38.675105 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] Log opened at 2024-10-19 08:36:38.694931 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 08:36:38.700474 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-19 08:36:39.608957 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 08:36:39.981879 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-19 08:36:40.606820 - -[23] Log opened at 2024-10-19 11:04:19.856566 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 11:04:20.844931 - -[24] Log opened at 2024-10-19 11:04:20.860030 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:04:21.819793 - -[24] Log opened at 2024-10-19 11:04:21.951596 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:04:22.612670 - -[25] Log opened at 2024-10-19 11:04:22.798730 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 11:04:23.686746 - -[25] Log opened at 2024-10-19 11:04:24.186474 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 11:04:25.653443 - -[25] Log opened at 2024-10-19 11:04:25.666374 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 11:04:26.849196 - -[25] Log opened at 2024-10-19 11:04:26.939237 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 11:04:27.589930 - -[25] Log opened at 2024-10-19 11:04:27.800410 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-19 11:04:27.808251 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 11:04:27.873453 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 11:04:28.756829 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 11:04:29.408429 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 11:04:29.825157 - -[31] Log opened at 2024-10-19 11:24:53.162648 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 11:24:54.288736 - -[31] Log opened at 2024-10-19 11:24:54.304981 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 11:24:55.385669 - -[33] Log opened at 2024-10-19 11:27:14.122236 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 11:27:15.865850 - -[33] Log opened at 2024-10-19 11:27:16.105284 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 11:27:16.163399 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 11:27:16.762627 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:27:17.353152 - -[22] Log opened at 2024-10-19 11:27:17.413862 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-19 11:27:17.523675 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-19 11:27:17.525676 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-19 11:27:18.550039 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:27:19.214516 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 11:27:19.573407 - -[31] Log opened at 2024-10-19 11:27:34.898901 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 11:27:36.628094 - -[31] Log opened at 2024-10-19 11:27:36.853981 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 11:27:36.917001 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 11:27:37.517397 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 11:27:38.096461 - -[23] Log opened at 2024-10-19 11:27:38.155942 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 11:27:38.254406 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 11:27:38.263442 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 11:27:39.259703 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 11:27:39.961342 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:27:40.300303 - -[22] Log opened at 2024-10-19 11:27:50.258699 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-19 11:27:50.338840 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log opened at 2024-10-19 11:27:51.052232 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-19 11:27:51.136828 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:27:51.487632 - -[31] Log opened at 2024-10-19 11:27:51.512413 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-19 11:27:51.596291 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 11:27:51.678605 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log opened at 2024-10-19 11:27:51.819178 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-19 11:27:51.838953 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 11:27:51.937427 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-19 11:27:51.940825 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-19 11:27:52.032142 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 11:27:52.335854 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 11:27:52.701398 - -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 11:27:53.080148 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 11:27:53.456202 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 11:27:53.862320 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 11:27:54.272028 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 11:27:54.636067 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:27:55.022669 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:27:55.419836 - -[36] Log opened at 2024-10-19 11:28:29.342384 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-19 11:28:29.354223 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log opened at 2024-10-19 11:28:31.331859 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 11:28:53.126303 - -[31] Log opened at 2024-10-19 11:29:03.714822 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 11:29:05.658030 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 11:29:17.035250 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 11:29:35.548622 - -[33] Log opened at 2024-10-19 11:30:21.669722 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 11:30:35.278180 - -[32] Log opened at 2024-10-19 11:31:35.124865 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 11:31:55.527152 - -[32] Log opened at 2024-10-19 11:31:57.013760 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 11:32:11.904407 - -[32] Log opened at 2024-10-19 11:32:16.160640 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 11:32:33.117813 - -[35] Log opened at 2024-10-19 11:32:57.729200 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 11:33:00.479523 - -[23] Log opened at 2024-10-19 11:34:17.625395 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 11:34:34.254135 - -[24] Log opened at 2024-10-19 11:35:07.939242 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:35:23.710981 - -[22] Log opened at 2024-10-19 11:36:19.926718 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:36:21.097104 - -[22] Log opened at 2024-10-19 11:36:24.279397 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:36:25.535613 - -[22] Log opened at 2024-10-19 11:36:27.878126 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:36:29.006997 - -[22] Log opened at 2024-10-19 11:36:29.742395 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:36:30.912480 - -[22] Log opened at 2024-10-19 11:36:30.934226 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:36:47.719031 - -[36] Log opened at 2024-10-19 11:43:56.325434 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 11:43:57.601306 - -[36] Log opened at 2024-10-19 11:43:57.665440 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 11:43:58.601831 - -[36] Log opened at 2024-10-19 11:43:58.879043 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 11:43:59.812571 - -[38] Log opened at 2024-10-19 11:59:13.491879 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 11:59:15.167801 - -[38] Log opened at 2024-10-19 11:59:15.379288 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-19 11:59:15.382742 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 11:59:16.093669 - -[24] Log opened at 2024-10-19 11:59:16.112495 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 11:59:16.125567 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 11:59:16.693544 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:59:17.188764 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:59:18.187484 - -[22] Log opened at 2024-10-19 11:59:18.347593 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 11:59:18.419195 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:59:19.011132 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 11:59:19.703223 - -[22] Log opened at 2024-10-19 11:59:19.750380 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-19 11:59:19.844223 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-19 11:59:19.850057 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 11:59:20.891230 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 11:59:21.530080 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 11:59:21.871451 - -[23] Log opened at 2024-10-19 11:59:28.790674 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-19 11:59:28.875536 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-19 11:59:29.877773 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-10-19 11:59:29.945214 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 11:59:30.047057 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 11:59:30.135181 - -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 11:59:30.560819 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 11:59:31.008109 - -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-19 11:59:31.391411 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 11:59:31.778663 - -[32] Log opened at 2024-10-19 12:00:30.224813 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-10-19 12:00:30.238055 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 12:00:44.813396 - -[33] Log opened at 2024-10-19 12:00:50.534099 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 12:01:00.027983 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 12:01:00.432262 - -[33] Log opened at 2024-10-19 12:01:03.167267 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 12:01:04.284691 - -[33] Log opened at 2024-10-19 12:01:05.045487 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 12:01:06.151390 - -[33] Log opened at 2024-10-19 12:01:07.627029 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 12:01:08.731040 - -[33] Log opened at 2024-10-19 12:01:08.748223 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 12:01:24.719063 - -[36] Log opened at 2024-10-19 12:03:34.106241 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 12:03:35.884491 - -[36] Log opened at 2024-10-19 12:03:36.107653 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-19 12:03:36.157799 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 12:03:36.764752 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-19 12:03:37.362418 - -[40] Log opened at 2024-10-19 12:03:37.489240 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-19 12:03:37.505229 -[24] Log opened at 2024-10-19 12:03:37.505228 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 12:03:38.494602 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-19 12:03:39.130076 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 12:03:39.487429 - -[32] Log opened at 2024-10-19 12:03:46.636253 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-19 12:03:46.702754 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 12:03:47.763218 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-19 12:03:48.211304 - -[22] Log opened at 2024-10-19 12:04:48.036826 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 12:05:03.834688 - -[22] Log opened at 2024-10-19 12:05:05.365778 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 12:05:20.936532 - -[41] Log opened at 2024-10-19 12:05:26.342673 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 12:05:27.515512 - -[41] Log opened at 2024-10-19 12:05:31.331527 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 12:05:32.461194 - -[41] Log opened at 2024-10-19 12:05:32.894311 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 12:05:34.026490 - -[41] Log opened at 2024-10-19 12:05:34.910480 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 12:05:36.073592 - -[41] Log opened at 2024-10-19 12:05:36.090947 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 12:05:51.723531 - -[36] Log opened at 2024-10-19 12:06:09.074247 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 12:06:10.376968 - -[38] Log opened at 2024-10-19 12:07:14.492739 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 12:07:15.802244 - -[39] Log opened at 2024-10-19 12:08:42.185991 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1327 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 11 -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- stack_get -i 12 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 13 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_names -i 15 -d 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 17 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 18 -n "$data['excluirRotativa']" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 21 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 23 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 24 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 25 -n "$cubierta" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 26 -n "$isColor" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 28 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-19 12:10:09.650638 - -[39] Log opened at 2024-10-19 12:10:14.573526 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1327 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 12 -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- stack_get -i 13 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_names -i 15 -d 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 17 -n "$paginasCuadernillo" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_remove -i 18 -d 390009 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1328 -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 20 -[39] [Step Debug] -> - -[39] [Step Debug] <- stack_get -i 21 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_names -i 23 -d 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 25 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-19 12:11:10.020500 - -[23] Log opened at 2024-10-19 12:11:53.794515 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 12:11:55.032210 - -[40] Log opened at 2024-10-19 12:12:46.787493 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-19 12:12:47.990631 - -[24] Log opened at 2024-10-19 12:13:25.987193 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 12:13:27.244507 - -[32] Log opened at 2024-10-19 12:14:28.531889 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 12:14:29.785439 - -[33] Log opened at 2024-10-19 12:14:42.439328 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 656 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1329 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1344 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 14 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 15 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 17 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 19 -n "$papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 20 -n "$reqData" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_remove -i 21 -d 330003 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 248 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 23 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 24 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 25 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 26 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 27 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 28 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 29 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 30 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 31 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 33 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 34 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 36 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 37 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 38 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 40 -n "$data[\"papel_generico\"]" -p 0 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 41 -n "$data[\"papel_generico\"][\"negro\"]" -p 0 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 42 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-19 12:17:28.169480 - -[33] Log opened at 2024-10-19 12:17:30.716207 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1329 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1344 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 248 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 14 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 15 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 18 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_remove -i 20 -d 330012 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 21 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 22 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 23 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 25 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 27 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 28 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 29 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 31 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- step_over -i 33 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 34 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 37 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 38 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_remove -i 39 -d 330014 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 40 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-19 12:18:02.198996 - -[22] Log opened at 2024-10-19 12:18:21.642834 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 12:18:37.408354 - -[41] Log opened at 2024-10-19 12:22:23.243829 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-19 12:22:24.506566 - -[36] Log opened at 2024-10-19 12:24:34.133809 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 12 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 13 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 16 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- step_over -i 18 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 19 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 20 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 22 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 24 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 26 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 27 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 30 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- step_over -i 32 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 33 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 36 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 37 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- step_into -i 38 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 39 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 40 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 42 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 43 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- step_over -i 44 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 45 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 46 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 47 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 48 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- step_over -i 50 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 51 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 54 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 55 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- step_over -i 56 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 57 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 58 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 60 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- step_over -i 61 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 62 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 63 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 64 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 65 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 66 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 67 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 68 -[36] [Step Debug] -> - -[36] Log closed at 2024-10-19 12:26:03.337225 - -[36] Log opened at 2024-10-19 12:26:06.018450 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 13 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 14 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 17 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 19 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 20 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 21 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 23 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 25 -[36] [Step Debug] -> - -[36] Log closed at 2024-10-19 12:26:12.443303 - -[36] Log opened at 2024-10-19 12:26:15.387395 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 13 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 14 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 17 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 19 -d 360017 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 20 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 21 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 24 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_remove -i 26 -d 360018 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 245 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 28 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 29 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 30 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 31 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 32 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 35 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 37 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 38 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 39 -n "$datos_entrada" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 40 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 42 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 43 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 44 -[36] [Step Debug] -> - -[36] Log closed at 2024-10-19 12:27:52.878712 - -[36] Log opened at 2024-10-19 12:27:56.411497 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 12:28:14.240551 - -[38] Log opened at 2024-10-19 12:28:48.216948 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 12:29:04.577054 - -[39] Log opened at 2024-10-19 12:29:38.556275 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 245 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 498 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 14 -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- stack_get -i 15 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_names -i 19 -d 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_remove -i 21 -d 390016 -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 22 -[39] [Step Debug] -> - -[39] [Step Debug] <- stack_get -i 23 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 24 -n "$datos_entrada" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 26 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_names -i 27 -d 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- property_get -i 29 -n "$data[\"interior\"]" -p 0 -d 0 -c 0 -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 30 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-19 12:30:49.644105 - -[23] Log opened at 2024-10-19 12:30:59.980876 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 12 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-19 12:31:14.353104 - -[40] Log opened at 2024-10-19 12:31:50.926433 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[40] [Step Debug] -> - -[40] [Step Debug] <- run -i 12 -[40] [Step Debug] -> - -[40] [Step Debug] -> - -[40] Log closed at 2024-10-19 12:32:07.038683 - -[22] Log opened at 2024-10-19 17:47:07.528385 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 17:47:08.600617 - -[22] Log opened at 2024-10-19 17:47:08.615809 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 17:47:09.611121 - -[22] Log opened at 2024-10-19 17:47:09.685317 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 17:47:10.349559 - -[25] Log opened at 2024-10-19 17:47:10.472328 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:11.394702 - -[25] Log opened at 2024-10-19 17:47:12.010140 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:13.511285 - -[25] Log opened at 2024-10-19 17:47:13.520658 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:14.712897 - -[25] Log opened at 2024-10-19 17:47:14.766853 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:15.413613 - -[25] Log opened at 2024-10-19 17:47:15.485210 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 17:47:15.505736 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 17:47:16.396013 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:17.019941 - -[25] Log opened at 2024-10-19 17:47:18.220000 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:19.957285 - -[25] Log opened at 2024-10-19 17:47:20.031404 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 17:47:20.038438 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:20.696880 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 17:47:21.291919 - -[32] Log opened at 2024-10-19 17:47:21.332270 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-19 17:47:21.343767 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-19 17:47:21.346750 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-19 17:47:22.337882 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 17:47:22.917625 - -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:47:23.270239 - -[28] Log opened at 2024-10-19 17:52:45.868264 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-19 17:52:47.558852 - -[28] Log opened at 2024-10-19 17:52:47.658073 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-19 17:52:47.743248 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-19 17:52:48.311335 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-19 17:52:48.960233 - -[22] Log opened at 2024-10-19 17:52:48.990967 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-19 17:52:48.997950 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 17:52:49.003047 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 17:52:50.003330 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 17:52:50.670741 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 17:52:51.026315 - -[32] Log opened at 2024-10-19 17:52:59.256517 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 17:53:00.511711 - -[32] Log opened at 2024-10-19 17:53:00.570389 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-19 17:53:00.645954 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 17:53:00.697083 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log opened at 2024-10-19 17:53:00.826020 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log opened at 2024-10-19 17:53:00.879732 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log opened at 2024-10-19 17:53:01.054155 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log opened at 2024-10-19 17:53:01.159880 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-19 17:53:01.472232 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 17:53:01.605842 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log opened at 2024-10-19 17:53:01.688907 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 17:53:01.716826 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 17:53:01.910911 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-19 17:53:02.055223 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:53:02.100082 - -[25] Log opened at 2024-10-19 17:53:02.101108 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 17:53:02.472432 - -[24] Log opened at 2024-10-19 17:53:02.473273 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 17:53:02.838051 - -[35] Log opened at 2024-10-19 17:53:02.839123 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log opened at 2024-10-19 17:53:03.056896 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-19 17:53:03.057132 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-19 17:53:03.226521 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-19 17:53:03.606971 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-19 17:53:03.977672 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 17:53:04.369785 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 17:53:04.755085 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 17:53:05.142537 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 17:53:05.542070 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 17:53:05.952851 - -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:53:06.341977 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 17:53:06.726258 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log closed at 2024-10-19 17:53:07.109598 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 17:53:07.511500 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 17:53:07.900862 - -[22] Log opened at 2024-10-19 17:53:56.394879 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 17:53:57.652827 - -[27] Log opened at 2024-10-19 17:54:07.423583 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 17:54:08.632727 - -[36] Log opened at 2024-10-19 17:55:51.419452 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 17:56:06.527653 - -[25] Log opened at 2024-10-19 17:56:12.298536 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:56:13.423499 - -[25] Log opened at 2024-10-19 17:56:15.851620 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:56:16.998037 - -[25] Log opened at 2024-10-19 17:56:17.384357 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:56:18.588246 - -[25] Log opened at 2024-10-19 17:56:19.737721 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:56:20.872529 - -[25] Log opened at 2024-10-19 17:56:20.902489 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 17:56:36.476559 - -[24] Log opened at 2024-10-19 17:56:48.267167 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 17:56:49.479358 - -[35] Log opened at 2024-10-19 17:57:23.396054 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 17:57:24.688484 - -[37] Log opened at 2024-10-19 17:57:41.193031 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 17:57:58.933681 - -[38] Log opened at 2024-10-19 17:58:31.879511 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 17:58:49.816853 - -[23] Log opened at 2024-10-19 17:58:53.169316 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 17:59:08.260616 - -[27] Log opened at 2024-10-19 18:02:05.692871 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 514 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 12 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-19 18:02:22.102195 - -[32] Log opened at 2024-10-19 18:02:26.011868 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 514 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 12 -[32] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- stack_get -i 13 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_names -i 17 -d 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 22 -n "$data[\"interior\"]" -p 0 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 23 -[32] [Step Debug] -> - -[32] Log closed at 2024-10-19 18:03:04.666072 - -[36] Log opened at 2024-10-19 18:04:18.942458 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 18:04:34.775135 - -[25] Log opened at 2024-10-19 18:04:58.730469 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 18:05:13.758752 - -[37] Log opened at 2024-10-19 18:08:33.691100 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:08:49.388458 - -[38] Log opened at 2024-10-19 18:09:26.929843 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:09:42.999859 - -[38] Log opened at 2024-10-19 18:09:43.057444 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:09:45.779525 - -[38] Log opened at 2024-10-19 18:09:45.865021 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-19 18:09:45.879838 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:09:46.528254 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 18:09:47.054527 - -[23] Log opened at 2024-10-19 18:09:47.082113 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 18:09:47.087243 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 18:09:47.091280 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 18:09:48.149378 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 18:09:48.504893 - -[22] Log opened at 2024-10-19 18:09:48.546607 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 18:09:49.138920 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 18:09:49.769170 - -[32] Log opened at 2024-10-19 18:21:48.230052 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 18:21:50.974183 - -[36] Log opened at 2024-10-19 18:21:51.089299 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 18:21:51.096948 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 18:21:51.756313 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 18:21:52.271334 - -[36] Log opened at 2024-10-19 18:21:52.305284 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-19 18:21:52.309509 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 18:21:52.316398 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 18:21:53.350413 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 18:21:53.659871 - -[25] Log opened at 2024-10-19 18:21:53.705408 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 18:21:54.307215 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 18:21:54.964599 - -[35] Log opened at 2024-10-19 18:22:30.580276 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 18:22:33.372682 - -[35] Log opened at 2024-10-19 18:22:33.456756 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-19 18:22:33.472427 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 18:22:34.167653 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:22:34.746233 - -[37] Log opened at 2024-10-19 18:22:34.802415 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-19 18:22:34.811446 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 18:22:34.812493 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:22:35.905173 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:22:36.515493 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 18:22:36.858597 - -[38] Log opened at 2024-10-19 18:22:36.912256 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:22:38.195469 - -[27] Log opened at 2024-10-19 18:23:10.132822 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 18:23:12.765125 - -[27] Log opened at 2024-10-19 18:23:12.885543 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-19 18:23:12.888894 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 18:23:13.540983 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 18:23:14.064868 - -[23] Log opened at 2024-10-19 18:23:14.109196 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 18:23:14.191899 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-19 18:23:14.207908 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 18:23:15.233690 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 18:23:15.835643 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 18:23:16.187111 - -[22] Log opened at 2024-10-19 18:23:16.234967 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 18:23:17.476246 - -[36] Log opened at 2024-10-19 18:23:51.490398 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 18:23:54.136255 - -[36] Log opened at 2024-10-19 18:23:54.260538 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-19 18:23:54.288364 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 18:23:54.912818 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 18:23:55.451807 - -[25] Log opened at 2024-10-19 18:23:55.499835 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-19 18:23:55.582988 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[37] Log opened at 2024-10-19 18:23:55.582989 -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:23:56.635537 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-19 18:23:57.411466 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 18:23:57.755540 - -[37] Log opened at 2024-10-19 18:23:57.797893 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:23:59.033226 - -[38] Log opened at 2024-10-19 18:24:15.172039 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:24:17.987246 - -[38] Log opened at 2024-10-19 18:24:18.124881 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-19 18:24:18.193605 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:24:18.777353 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 18:24:19.415638 - -[32] Log opened at 2024-10-19 18:24:19.461957 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-19 18:24:19.571282 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-19 18:24:19.578318 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-19 18:24:20.592718 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 18:24:21.244269 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-19 18:24:21.613899 - -[32] Log opened at 2024-10-19 18:24:21.666027 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 18:24:23.039693 - -[37] Log opened at 2024-10-19 18:24:54.197366 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:24:56.971058 - -[37] Log opened at 2024-10-19 18:24:57.195378 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 18:24:57.251964 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:24:57.862266 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 18:24:58.488460 - -[38] Log opened at 2024-10-19 18:24:58.542489 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-19 18:24:58.629653 -[27] Log opened at 2024-10-19 18:24:58.629652 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 18:24:59.683286 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-19 18:25:00.335469 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-19 18:25:00.687656 - -[43] Log opened at 2024-10-19 18:25:00.739056 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-19 18:25:01.970030 - -[32] Log opened at 2024-10-19 18:26:23.561738 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 18:26:26.349461 - -[32] Log opened at 2024-10-19 18:26:26.590301 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-19 18:26:26.679765 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-19 18:26:27.256068 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-19 18:26:27.919660 - -[37] Log opened at 2024-10-19 18:26:28.043068 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-19 18:26:28.153302 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[36] Log opened at 2024-10-19 18:26:28.153322 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-19 18:26:29.218803 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-19 18:26:29.811287 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-19 18:26:30.160768 - -[44] Log opened at 2024-10-19 18:26:30.207167 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-19 18:26:31.370386 - -[22] Log opened at 2024-10-20 10:51:00.409745 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:51:01.455153 - -[22] Log opened at 2024-10-20 10:51:01.513877 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:51:02.591286 - -[22] Log opened at 2024-10-20 10:51:02.659493 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:51:03.325222 - -[23] Log opened at 2024-10-20 10:51:03.494286 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:04.422581 - -[23] Log opened at 2024-10-20 10:51:04.598412 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:06.013253 - -[23] Log opened at 2024-10-20 10:51:06.024368 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:07.164852 - -[23] Log opened at 2024-10-20 10:51:07.214127 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:07.872643 - -[23] Log opened at 2024-10-20 10:51:07.950640 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-20 10:51:07.966518 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-20 10:51:08.890262 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:09.507466 - -[23] Log opened at 2024-10-20 10:51:13.040938 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:14.339032 - -[23] Log opened at 2024-10-20 10:51:14.399525 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:15.050775 - -[31] Log opened at 2024-10-20 10:51:15.185980 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 10:51:15.186867 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-20 10:51:15.272743 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:51:16.153104 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:51:16.772333 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:51:17.228977 - -[31] Log opened at 2024-10-20 10:51:19.427978 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:51:22.208017 - -[31] Log opened at 2024-10-20 10:51:22.277422 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 10:51:22.286945 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:51:22.937530 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:51:23.469288 - -[31] Log opened at 2024-10-20 10:51:23.494971 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-20 10:51:23.496456 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-20 10:51:23.500955 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-20 10:51:24.534418 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:51:25.102061 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-20 10:51:25.456548 - -[31] Log opened at 2024-10-20 10:51:25.497378 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:51:26.677310 - -[33] Log opened at 2024-10-20 10:51:32.897325 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:51:33.885802 - -[33] Log opened at 2024-10-20 10:51:33.893580 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:51:34.851589 - -[23] Log opened at 2024-10-20 10:51:43.073548 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:45.736105 - -[23] Log opened at 2024-10-20 10:51:45.930183 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 10:51:45.933280 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:51:46.584855 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:51:47.061035 - -[29] Log opened at 2024-10-20 10:51:47.106280 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-20 10:51:47.226261 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-20 10:51:47.232097 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:51:48.269382 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:51:48.864288 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:51:49.204762 - -[32] Log opened at 2024-10-20 10:51:49.253357 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:51:50.505698 - -[27] Log opened at 2024-10-20 10:52:53.880150 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-20 10:52:59.417045 - -[27] Log opened at 2024-10-20 10:52:59.593356 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-10-20 10:52:59.612329 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-20 10:53:00.247013 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:53:01.478484 - -[31] Log opened at 2024-10-20 10:53:01.641045 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-20 10:53:01.676445 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-20 10:53:01.686671 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:53:02.715062 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:53:03.713401 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-20 10:53:04.050890 - -[33] Log opened at 2024-10-20 10:53:04.098999 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:53:06.380380 - -[34] Log opened at 2024-10-20 10:53:10.397920 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:53:13.070312 - -[34] Log opened at 2024-10-20 10:53:13.353920 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 10:53:13.423258 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:53:14.009461 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:53:14.627663 - -[26] Log opened at 2024-10-20 10:53:14.688767 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 10:53:14.772978 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-20 10:53:14.777122 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:53:15.916669 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:53:16.535418 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:53:16.894343 - -[23] Log opened at 2024-10-20 10:53:16.939706 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:53:18.179582 - -[27] Log opened at 2024-10-20 10:53:24.266871 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-20 10:53:27.942074 - -[27] Log opened at 2024-10-20 10:53:28.240955 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-20 10:53:28.339900 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-20 10:53:28.907573 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 10:53:29.622064 - -[33] Log opened at 2024-10-20 10:53:29.688528 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 10:53:29.788565 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 10:53:29.811298 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:53:30.915142 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:53:31.526805 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:53:31.877691 - -[34] Log opened at 2024-10-20 10:53:31.962622 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:53:33.305292 - -[33] Log opened at 2024-10-20 10:53:36.467164 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:53:39.352531 - -[33] Log opened at 2024-10-20 10:53:39.597858 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-20 10:53:39.601227 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:53:40.295011 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:53:40.946599 - -[33] Log opened at 2024-10-20 10:53:41.013277 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-20 10:53:41.143039 -[26] Log opened at 2024-10-20 10:53:41.143037 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:53:42.350533 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:53:42.934064 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:53:43.282087 - -[33] Log opened at 2024-10-20 10:53:43.338498 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:53:44.599067 - -[35] Log opened at 2024-10-20 10:53:54.954606 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 10:53:57.931552 - -[22] Log opened at 2024-10-20 10:53:58.116068 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-20 10:53:58.124115 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:53:58.829715 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 10:53:59.422187 - -[29] Log opened at 2024-10-20 10:53:59.595659 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 10:53:59.664050 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-20 10:53:59.664073 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:54:00.927915 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:54:01.645969 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:54:01.993409 - -[22] Log opened at 2024-10-20 10:54:02.044238 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:54:03.339051 - -[23] Log opened at 2024-10-20 10:54:23.181827 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:54:26.444603 - -[23] Log opened at 2024-10-20 10:54:26.693341 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-20 10:54:26.775599 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-20 10:54:27.362558 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 10:54:28.977599 - -[35] Log opened at 2024-10-20 10:54:29.023326 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-20 10:54:29.099326 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-20 10:54:29.120150 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log closed at 2024-10-20 10:54:30.239652 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:54:30.640884 - -[32] Log opened at 2024-10-20 10:54:30.699611 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 10:54:33.885966 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:54:35.373011 - -[32] Log opened at 2024-10-20 10:54:39.656810 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:54:43.549080 - -[32] Log opened at 2024-10-20 10:54:43.717947 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 10:54:43.721424 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:54:44.383532 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:54:45.051451 - -[32] Log opened at 2024-10-20 10:54:45.102321 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 10:54:45.168821 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-20 10:54:45.206927 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:54:46.279262 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:54:46.897446 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:54:47.236732 - -[32] Log opened at 2024-10-20 10:54:47.291854 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:54:48.541728 - -[36] Log opened at 2024-10-20 10:57:20.073265 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 10:57:22.758569 - -[36] Log opened at 2024-10-20 10:57:22.955860 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-20 10:57:22.964028 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 10:57:23.605961 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:57:24.093196 - -[33] Log opened at 2024-10-20 10:57:24.143603 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-20 10:57:24.245381 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-20 10:57:24.262395 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:57:25.299564 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-20 10:57:25.897363 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 10:57:26.246546 - -[26] Log opened at 2024-10-20 10:57:26.292549 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:57:27.556658 - -[29] Log opened at 2024-10-20 10:57:44.515216 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:57:47.325623 - -[29] Log opened at 2024-10-20 10:57:47.579361 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-20 10:57:47.651309 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:57:48.248087 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:57:48.930530 - -[31] Log opened at 2024-10-20 10:57:48.982630 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-20 10:57:49.074757 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-20 10:57:49.078970 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 10:57:50.176313 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-20 10:57:50.812889 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 10:57:51.184803 - -[32] Log opened at 2024-10-20 10:57:51.234457 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:57:52.493214 - -[26] Log opened at 2024-10-20 10:58:33.746641 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:58:36.392651 - -[26] Log opened at 2024-10-20 10:58:36.628354 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-20 10:58:36.699740 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-20 10:58:37.295697 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 10:58:37.898670 - -[34] Log opened at 2024-10-20 10:58:38.025155 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 10:58:38.149575 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 10:58:38.149912 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 10:58:39.201307 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:58:39.821139 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:58:40.150803 - -[29] Log opened at 2024-10-20 10:58:40.206970 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:58:41.504003 - -[32] Log opened at 2024-10-20 10:59:37.787629 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:59:40.455977 - -[32] Log opened at 2024-10-20 10:59:40.733417 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-20 10:59:40.809270 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 10:59:41.398049 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-20 10:59:42.105074 - -[35] Log opened at 2024-10-20 10:59:42.163220 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 10:59:42.257805 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[39] Log opened at 2024-10-20 10:59:42.257805 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 10:59:43.465896 - -[34] Log opened at 2024-10-20 10:59:43.514898 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 10:59:44.068115 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-20 10:59:44.411172 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:59:46.303288 - -[34] Log opened at 2024-10-20 10:59:46.493414 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-20 10:59:46.556492 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 10:59:47.154389 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 10:59:47.718619 - -[40] Log opened at 2024-10-20 10:59:47.797760 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 10:59:47.882117 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 10:59:47.924558 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 10:59:48.943863 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 10:59:49.533029 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 10:59:49.872297 - -[29] Log opened at 2024-10-20 10:59:49.923695 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 10:59:51.110170 - -[35] Log opened at 2024-10-20 11:02:47.060411 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 11:02:49.685836 - -[35] Log opened at 2024-10-20 11:02:49.922281 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-20 11:02:49.991014 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-20 11:02:50.588360 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 11:02:51.195287 - -[39] Log opened at 2024-10-20 11:02:51.290103 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 11:02:51.439598 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[40] Log opened at 2024-10-20 11:02:51.439600 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 11:02:52.645973 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-20 11:02:53.235252 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 11:02:53.576351 - -[39] Log opened at 2024-10-20 11:02:53.627578 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-20 11:02:54.918500 - -[22] Log opened at 2024-10-20 11:03:00.574861 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:03:03.301427 - -[22] Log opened at 2024-10-20 11:03:03.484302 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 11:03:03.486925 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:03:04.150234 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 11:03:04.733039 - -[29] Log opened at 2024-10-20 11:03:04.839002 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-20 11:03:04.972144 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-20 11:03:04.981464 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 11:03:05.997263 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 11:03:06.663540 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 11:03:07.010678 - -[32] Log opened at 2024-10-20 11:03:07.061297 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 11:03:08.270816 - -[34] Log opened at 2024-10-20 11:03:11.145989 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 11:03:13.916014 - -[34] Log opened at 2024-10-20 11:03:14.143768 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 11:03:14.206742 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 11:03:14.804934 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 11:03:15.401708 - -[37] Log opened at 2024-10-20 11:03:15.459108 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-20 11:03:15.579411 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-20 11:03:15.585810 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-20 11:03:16.697846 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:03:17.308199 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:03:17.649709 - -[37] Log opened at 2024-10-20 11:03:17.716343 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:03:18.983750 - -[36] Log opened at 2024-10-20 11:04:10.190732 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 11:04:12.944087 - -[36] Log opened at 2024-10-20 11:04:13.205276 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-20 11:04:13.281304 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-20 11:04:13.864615 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 11:04:14.469696 - -[40] Log opened at 2024-10-20 11:04:14.535110 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 11:04:14.633523 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-20 11:04:14.646102 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 11:04:15.699728 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 11:04:16.330496 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-20 11:04:16.676687 - -[34] Log opened at 2024-10-20 11:04:16.720360 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 11:04:17.999940 - -[22] Log opened at 2024-10-20 11:05:14.170655 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:05:16.938634 - -[22] Log opened at 2024-10-20 11:05:17.196413 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 11:05:17.269548 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:05:17.865118 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 11:05:18.483522 - -[32] Log opened at 2024-10-20 11:05:18.537125 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-20 11:05:18.636414 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 11:05:18.637257 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 11:05:19.751338 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 11:05:20.423276 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 11:05:20.768696 - -[40] Log opened at 2024-10-20 11:05:20.809091 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 11:05:22.101039 - -[34] Log opened at 2024-10-20 11:06:35.389682 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 12 -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] Log closed at 2024-10-20 11:06:37.526630 - -[34] Log opened at 2024-10-20 11:06:37.681161 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[41] Log opened at 2024-10-20 11:06:37.703680 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- run -i 6 -[34] [Step Debug] <- run -i 12 -[34] [Step Debug] -> - -[34] Log closed at 2024-10-20 11:06:37.863819 - -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588 -[41] [Step Debug] -> - -[41] Log closed at 2024-10-20 11:06:38.406931 - -[41] Log opened at 2024-10-20 11:06:38.450105 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[41] [Step Debug] -> - -[41] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[41] [Step Debug] -> - -[41] [Step Debug] <- run -i 12 -[37] Log opened at 2024-10-20 11:06:38.598931 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-20 11:06:38.599543 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[43] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[43] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[43] [Step Debug] -> - -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[43] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[43] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[43] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588 -[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588 -[43] [Step Debug] -> - -[37] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[37] [Step Debug] -> - -[43] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[37] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[43] [Step Debug] -> - -[37] [Step Debug] <- run -i 14 -[43] [Step Debug] <- run -i 14 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-20 11:06:39.193989 - -[41] [Step Debug] -> - -[41] Log closed at 2024-10-20 11:06:39.649536 - -[43] [Step Debug] -> - -[43] Log closed at 2024-10-20 11:06:39.801519 - -[37] Log opened at 2024-10-20 11:06:39.850416 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 588 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 946 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 12 -[37] [Step Debug] -> - -[37] [Step Debug] -> - -[37] [Step Debug] <- stack_get -i 13 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 17 -n "$presupuesto->titulo" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 18 -n "$presupuesto->autor" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_names -i 19 -d 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 21 -n "$presupuesto->autor" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 22 -n "$presupuesto" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 23 -n "$presupuesto" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 24 -n "$presupuesto" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 25 -n "$presupuesto" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 26 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 27 -n "$presupuesto->iva_reducido" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 28 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 29 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 30 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 31 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 32 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 33 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 34 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 35 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 36 -n "$presupuesto" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 37 -n "$presupuesto->attributes" -p 0 -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 38 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 39 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 40 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 41 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- property_get -i 42 -n "$presupuesto->paginas_color" -d 0 -c 0 -[37] [Step Debug] -> - -[37] [Step Debug] <- stop -i 43 -[37] [Step Debug] -> - -[37] [Step Debug] -> - -[37] Log closed at 2024-10-20 11:07:05.250107 - -[42] Log opened at 2024-10-20 11:07:09.001735 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 11:07:11.829610 - -[42] Log opened at 2024-10-20 11:07:12.071188 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-20 11:07:12.128581 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 11:07:12.728218 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-20 11:07:13.300108 - -[40] Log opened at 2024-10-20 11:07:13.374014 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-20 11:07:13.502311 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-20 11:07:13.502709 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 11:07:14.614342 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 11:07:15.226132 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-20 11:07:15.562652 - -[22] Log opened at 2024-10-20 11:07:15.604288 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:07:16.837162 - -[37] Log opened at 2024-10-20 11:09:07.913581 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 12 -[37] [Step Debug] -> - -[37] [Step Debug] -> - -[37] Log closed at 2024-10-20 11:09:10.192426 - -[37] Log opened at 2024-10-20 11:09:10.398234 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[44] Log opened at 2024-10-20 11:09:10.468428 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[44] [Step Debug] -> - -[37] [Step Debug] <- run -i 12 -[44] [Step Debug] <- run -i 6 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-20 11:09:10.623515 - -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587 -[44] [Step Debug] -> - -[44] Log closed at 2024-10-20 11:09:11.289700 - -[38] Log opened at 2024-10-20 11:09:11.334406 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[38] [Step Debug] -> - -[40] Log opened at 2024-10-20 11:09:11.443605 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] <- run -i 12 -[40] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] -> - -[44] Log opened at 2024-10-20 11:09:11.446471 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[40] [Step Debug] -> - -[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[40] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[44] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[40] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[44] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[40] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[44] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[40] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587 -[44] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[44] [Step Debug] -> - -[40] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[44] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[44] [Step Debug] -> - -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[40] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[44] [Step Debug] -> - -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[40] [Step Debug] -> - -[40] [Step Debug] <- run -i 14 -[44] [Step Debug] <- run -i 14 -[40] [Step Debug] -> - -[40] Log closed at 2024-10-20 11:09:12.074857 - -[38] [Step Debug] -> - -[38] Log closed at 2024-10-20 11:09:12.523964 - -[44] [Step Debug] -> - -[44] Log closed at 2024-10-20 11:09:12.668772 - -[42] Log opened at 2024-10-20 11:09:12.721644 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 587 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 960 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 12 -[42] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- stack_get -i 13 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_names -i 17 -d 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 19 -n "$presupuesto->comp_pos_paginas_color" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 20 -n "$presupuesto->papel_interior_diferente" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 21 -n "$presupuesto->comp_pos_paginas_color" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 22 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 23 -n "$presupuesto->attributes" -p 0 -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 24 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 25 -n "$presupuesto->papel_interior_diferente" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 26 -n "$presupuesto->comp_pos_paginas_color" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 27 -n "$modelPapelFormato" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 28 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 29 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 30 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 31 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 32 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 33 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 34 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 35 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 36 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 37 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 38 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 39 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 40 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 41 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 42 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 43 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 44 -n "$presupuesto->paginas_color_consecutivas" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 45 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 46 -n "$presupuesto->tirada" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 47 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 48 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 49 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 50 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 51 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 52 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 53 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 54 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 55 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 56 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 57 -n "$presupuesto->attributes" -p 0 -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 58 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 59 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 60 -n "$presupuesto->referencia_cliente" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 61 -n "$presupuesto->referencia_cliente" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 62 -n "$presupuesto->referencia_cliente" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 63 -n "$presupuesto->referencia_cliente" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 64 -n "$presupuesto->paginas_cuadernillo" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 65 -[42] [Step Debug] -> - -[42] Log closed at 2024-10-20 11:10:42.538660 - -[41] Log opened at 2024-10-20 11:11:42.841963 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:11:45.505812 - -[41] Log opened at 2024-10-20 11:11:45.700497 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-20 11:11:45.763295 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:11:46.354134 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-20 11:11:46.988611 - -[32] Log opened at 2024-10-20 11:11:47.039455 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-20 11:11:47.132010 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-20 11:11:47.135210 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:11:48.201235 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-20 11:11:48.832542 - -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-20 11:11:49.170913 - -[43] Log opened at 2024-10-20 11:11:49.213613 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-20 11:11:50.423056 - -[42] Log opened at 2024-10-20 11:12:22.815125 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 11:12:25.466286 - -[22] Log opened at 2024-10-20 11:12:25.689535 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-20 11:12:25.748223 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:12:26.348228 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:12:26.960817 - -[37] Log opened at 2024-10-20 11:12:27.088890 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 11:12:27.122589 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 11:12:27.123958 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 11:12:28.162659 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:12:28.488433 - -[40] Log opened at 2024-10-20 11:12:28.532640 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:12:29.131001 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 11:12:29.705564 - -[41] Log opened at 2024-10-20 11:21:16.462272 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:21:19.073546 - -[41] Log opened at 2024-10-20 11:21:19.323034 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-20 11:21:19.379310 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:21:19.981158 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:21:20.562386 - -[45] Log opened at 2024-10-20 11:21:20.648701 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 11:21:20.767466 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 11:21:20.779768 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 11:21:21.816110 - -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-20 11:21:22.447808 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:21:22.794241 - -[37] Log opened at 2024-10-20 11:21:22.843810 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:21:24.128514 - -[44] Log opened at 2024-10-20 11:21:56.757358 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[44] [Step Debug] -> - -[44] [Step Debug] <- run -i 12 -[44] [Step Debug] -> - -[44] [Step Debug] -> - -[44] Log closed at 2024-10-20 11:21:58.998501 - -[44] Log opened at 2024-10-20 11:21:59.119173 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[44] [Step Debug] -> - -[47] Log opened at 2024-10-20 11:21:59.123745 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[44] [Step Debug] -> - -[47] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[44] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[47] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[44] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[44] [Step Debug] -> - -[47] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[44] [Step Debug] -> - -[47] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[44] [Step Debug] -> - -[47] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[44] [Step Debug] -> - -[47] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[47] [Step Debug] -> - -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[44] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[47] [Step Debug] -> - -[44] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[47] [Step Debug] -> - -[44] [Step Debug] <- run -i 14 -[47] [Step Debug] <- run -i 14 -[44] [Step Debug] -> - -[44] Log closed at 2024-10-20 11:21:59.328356 - -[47] [Step Debug] -> - -[47] Log closed at 2024-10-20 11:21:59.879985 - -[47] Log opened at 2024-10-20 11:21:59.932919 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[47] [Step Debug] -> - -[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[47] [Step Debug] -> - -[47] [Step Debug] <- run -i 12 -[42] Log opened at 2024-10-20 11:22:00.057840 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-20 11:22:00.058524 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[48] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[48] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[48] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[48] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[48] [Step Debug] -> - -[42] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[48] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[48] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[48] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[48] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[42] [Step Debug] -> - -[48] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[48] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[48] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[48] [Step Debug] -> - -[42] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[48] [Step Debug] -> - -[48] [Step Debug] <- run -i 14 -[42] [Step Debug] <- run -i 14 -[42] [Step Debug] -> - -[42] Log closed at 2024-10-20 11:22:00.696108 - -[47] [Step Debug] -> - -[47] Log closed at 2024-10-20 11:22:01.121472 - -[48] [Step Debug] -> - -[48] Log closed at 2024-10-20 11:22:01.253311 - -[42] Log opened at 2024-10-20 11:22:01.299173 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 12 -[42] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- stack_get -i 13 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_names -i 17 -d 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- step_into -i 20 -[42] [Step Debug] -> - -[42] [Step Debug] <- stack_get -i 21 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 24 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_names -i 25 -d 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 27 -n "$tipo_impresion_id" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 28 -n "$paisModel" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 29 -[42] [Step Debug] -> - -[42] Log closed at 2024-10-20 11:22:10.019768 - -[42] Log opened at 2024-10-20 11:22:12.767486 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 12 -[42] [Step Debug] -> - -[42] [Step Debug] -> - -[42] Log closed at 2024-10-20 11:22:15.057173 - -[42] Log opened at 2024-10-20 11:22:15.232180 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[42] [Step Debug] -> - -[46] Log opened at 2024-10-20 11:22:15.237696 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[42] [Step Debug] -> - -[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[46] [Step Debug] -> - -[42] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[46] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[42] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[46] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[46] [Step Debug] -> - -[42] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[46] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[46] [Step Debug] -> - -[46] [Step Debug] <- run -i 12 -[42] [Step Debug] <- run -i 12 -[42] [Step Debug] -> - -[42] Log closed at 2024-10-20 11:22:15.383707 - -[46] [Step Debug] -> - -[46] Log closed at 2024-10-20 11:22:15.930528 - -[42] Log opened at 2024-10-20 11:22:15.970177 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 12 -[45] Log opened at 2024-10-20 11:22:16.116525 -[46] Log opened at 2024-10-20 11:22:16.116520 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] -> - -[45] [Step Debug] -> - -[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[45] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[46] [Step Debug] -> - -[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[45] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[46] [Step Debug] -> - -[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[45] [Step Debug] -> - -[46] [Step Debug] -> - -[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[45] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[46] [Step Debug] -> - -[45] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[46] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[46] [Step Debug] -> - -[45] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[46] [Step Debug] -> - -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[45] [Step Debug] -> - -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[46] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[45] [Step Debug] -> - -[45] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[45] [Step Debug] -> - -[46] [Step Debug] <- run -i 14 -[45] [Step Debug] <- run -i 14 -[46] [Step Debug] -> - -[46] Log closed at 2024-10-20 11:22:16.730355 - -[42] [Step Debug] -> - -[42] Log closed at 2024-10-20 11:22:17.183399 - -[45] [Step Debug] -> - -[45] Log closed at 2024-10-20 11:22:17.338494 - -[42] Log opened at 2024-10-20 11:22:17.380072 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 599 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 964 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 12 -[42] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- stack_get -i 13 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_names -i 17 -d 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 19 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 20 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 21 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 22 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 23 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 24 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 25 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 26 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 27 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 28 -n "$presupuestoEntity" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 29 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 30 -n "$presupuesto->cliente_id" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 31 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- property_get -i 32 -n "$presupuesto" -d 0 -c 0 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_remove -i 33 -d 420038 -[42] [Step Debug] -> - -[42] [Step Debug] <- run -i 34 -[42] [Step Debug] -> - -[42] Log closed at 2024-10-20 11:22:27.029131 - -[41] Log opened at 2024-10-20 11:22:50.535774 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:22:53.217704 - -[41] Log opened at 2024-10-20 11:22:53.380671 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-10-20 11:22:53.388113 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:22:54.028668 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 11:22:54.518532 - -[40] Log opened at 2024-10-20 11:22:54.564290 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-20 11:22:54.724371 -[47] Log opened at 2024-10-20 11:22:54.724371 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-20 11:22:55.755863 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-20 11:22:56.405732 - -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 11:22:56.747842 - -[47] Log opened at 2024-10-20 11:22:56.792266 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-20 11:22:58.137658 - -[46] Log opened at 2024-10-20 11:23:41.054759 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 11:23:43.695683 - -[46] Log opened at 2024-10-20 11:23:43.933796 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-20 11:23:43.997499 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 11:23:44.599834 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:23:45.170154 - -[45] Log opened at 2024-10-20 11:23:45.220964 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-20 11:23:45.323166 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-20 11:23:45.323449 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 11:23:46.372819 - -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-20 11:23:46.975503 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 11:23:47.327979 - -[22] Log opened at 2024-10-20 11:23:47.376496 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 11:23:48.694625 - -[47] Log opened at 2024-10-20 11:24:08.838977 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-20 11:24:11.556891 - -[47] Log opened at 2024-10-20 11:24:11.792379 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-20 11:24:11.850242 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-20 11:24:12.451481 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 11:24:13.097754 - -[37] Log opened at 2024-10-20 11:24:13.148130 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] Log opened at 2024-10-20 11:24:13.259443 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 11:24:13.259878 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-20 11:24:14.306093 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-20 11:24:14.957471 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 11:24:15.347480 - -[49] Log opened at 2024-10-20 11:24:15.388778 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-20 11:24:16.616187 - -[50] Log opened at 2024-10-20 11:58:18.650179 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-20 11:58:19.788503 - -[47] Log opened at 2024-10-20 11:58:20.074024 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-20 11:58:20.997479 - -[42] Log opened at 2024-10-20 11:59:10.511284 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 11:59:12.172152 - -[44] Log opened at 2024-10-20 11:59:12.444714 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-20 11:59:13.360781 - -[46] Log opened at 2024-10-20 11:59:57.102561 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 11:59:59.855908 - -[46] Log opened at 2024-10-20 12:00:00.009879 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-20 12:00:00.065873 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:00:00.676138 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-20 12:00:01.287277 - -[41] Log opened at 2024-10-20 12:00:01.345522 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-20 12:00:01.456961 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-20 12:00:01.462854 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-20 12:00:02.491149 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:00:03.104296 - -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-20 12:00:03.488314 - -[48] Log opened at 2024-10-20 12:00:03.542934 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 12:00:04.996251 - -[44] Log opened at 2024-10-20 12:01:14.057925 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[44] [Step Debug] -> - -[44] [Step Debug] <- run -i 12 -[44] [Step Debug] -> - -[44] [Step Debug] -> - -[44] Log closed at 2024-10-20 12:01:16.260564 - -[44] Log opened at 2024-10-20 12:01:16.477920 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[44] [Step Debug] -> - -[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[44] [Step Debug] -> - -[50] Log opened at 2024-10-20 12:01:16.554373 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] -> - -[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[50] [Step Debug] -> - -[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[50] [Step Debug] -> - -[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[50] [Step Debug] -> - -[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[50] [Step Debug] -> - -[50] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[50] [Step Debug] -> - -[50] [Step Debug] <- run -i 6 -[44] [Step Debug] <- run -i 12 -[44] [Step Debug] -> - -[44] Log closed at 2024-10-20 12:01:16.762447 - -[50] [Step Debug] -> - -[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[50] [Step Debug] -> - -[50] Log closed at 2024-10-20 12:01:17.335342 - -[51] Log opened at 2024-10-20 12:01:17.383891 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[51] [Step Debug] -> - -[51] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[51] [Step Debug] -> - -[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[51] [Step Debug] -> - -[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[51] [Step Debug] -> - -[51] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[51] [Step Debug] -> - -[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[51] [Step Debug] -> - -[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[51] [Step Debug] -> - -[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[51] [Step Debug] -> - -[51] [Step Debug] <- run -i 12 -[46] Log opened at 2024-10-20 12:01:17.553577 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-20 12:01:17.553666 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] -> - -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[46] [Step Debug] -> - -[37] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[46] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[46] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[46] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[46] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[46] [Step Debug] -> - -[37] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[46] [Step Debug] -> - -[37] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[46] [Step Debug] -> - -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[37] [Step Debug] -> - -[46] [Step Debug] <- run -i 14 -[37] [Step Debug] <- run -i 14 -[46] [Step Debug] -> - -[46] Log closed at 2024-10-20 12:01:18.161882 - -[51] [Step Debug] -> - -[51] Log closed at 2024-10-20 12:01:18.538252 - -[37] [Step Debug] -> - -[37] Log closed at 2024-10-20 12:01:18.688230 - -[48] Log opened at 2024-10-20 12:01:18.734580 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[48] [Step Debug] -> - -[48] [Step Debug] <- run -i 12 -[48] [Step Debug] -> - -[48] [Step Debug] -> - -[48] [Step Debug] <- stack_get -i 13 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- context_names -i 17 -d 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 23 -n "$datos_papel[\"interior\"]" -p 0 -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- property_get -i 24 -n "$datos_papel[\"interior\"][\"negro\"]" -p 0 -d 0 -c 0 -[48] [Step Debug] -> - -[48] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2319 -[48] [Step Debug] -> - -[48] [Step Debug] -> - -[48] [Step Debug] <- run -i 26 -[48] [Step Debug] -> - -[48] Log closed at 2024-10-20 12:01:43.655462 - -[42] Log opened at 2024-10-20 12:02:23.652565 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 12:02:26.379350 - -[42] Log opened at 2024-10-20 12:02:26.658330 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] Log opened at 2024-10-20 12:02:26.729352 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 12:02:27.316368 - -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-20 12:02:27.933436 - -[51] Log opened at 2024-10-20 12:02:27.980018 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-20 12:02:28.061647 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 12:02:28.069657 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-20 12:02:29.104065 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-20 12:02:29.735593 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:02:30.089573 - -[50] Log opened at 2024-10-20 12:02:30.132343 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-20 12:02:31.592108 - -[41] Log opened at 2024-10-20 12:03:13.823235 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:03:16.483553 - -[41] Log opened at 2024-10-20 12:03:16.634290 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-20 12:03:16.703358 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:03:17.296281 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-20 12:03:17.872000 - -[42] Log opened at 2024-10-20 12:03:17.916083 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] Log opened at 2024-10-20 12:03:17.987807 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-20 12:03:18.003892 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:03:19.032456 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-20 12:03:19.646813 - -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-20 12:03:20.002969 - -[44] Log opened at 2024-10-20 12:03:20.050237 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-20 12:03:21.473683 - -[48] Log opened at 2024-10-20 12:33:43.945258 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 12:33:44.962718 - -[54] Log opened at 2024-10-20 12:33:44.978956 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:33:45.928785 - -[54] Log opened at 2024-10-20 12:33:46.137821 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:33:46.784179 - -[53] Log opened at 2024-10-20 12:33:47.082351 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:33:47.958266 - -[53] Log opened at 2024-10-20 12:33:49.180420 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:33:50.637750 - -[53] Log opened at 2024-10-20 12:33:50.655230 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:33:53.708484 - -[53] Log opened at 2024-10-20 12:33:53.823335 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] Log opened at 2024-10-20 12:33:53.835671 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:33:54.475201 - -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-20 12:33:55.018197 - -[53] Log opened at 2024-10-20 12:33:55.060578 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] Log opened at 2024-10-20 12:33:55.187792 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-20 12:33:55.195254 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-20 12:33:56.184264 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:33:56.854138 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-20 12:33:57.228089 - -[53] Log opened at 2024-10-20 12:33:57.270633 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:33:58.617742 - -[54] Log opened at 2024-10-20 12:34:09.439226 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:34:12.132276 - -[54] Log opened at 2024-10-20 12:34:12.329694 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] Log opened at 2024-10-20 12:34:12.385914 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:34:12.987684 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 12:34:13.559941 - -[50] Log opened at 2024-10-20 12:34:13.610967 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 12:34:13.712476 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-20 12:34:13.712654 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:34:14.745073 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-20 12:34:15.497001 - -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-20 12:34:15.851243 - -[55] Log opened at 2024-10-20 12:34:15.895047 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-20 12:34:17.324314 - -[54] Log opened at 2024-10-20 12:36:44.988467 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:36:47.705825 - -[54] Log opened at 2024-10-20 12:36:47.926223 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-20 12:36:47.989720 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:36:48.586241 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-20 12:36:49.187395 - -[46] Log opened at 2024-10-20 12:36:49.263489 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-20 12:36:49.441509 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log opened at 2024-10-20 12:36:49.471725 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-20 12:36:50.511885 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:36:51.077445 - -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 12:36:51.425273 - -[46] Log opened at 2024-10-20 12:36:51.478528 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:36:52.879493 - -[41] Log opened at 2024-10-20 12:37:20.588073 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:37:23.368106 - -[41] Log opened at 2024-10-20 12:37:23.616334 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-20 12:37:23.685506 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:37:24.271814 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-20 12:37:24.844836 - -[49] Log opened at 2024-10-20 12:37:24.897281 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-20 12:37:24.996482 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] Log opened at 2024-10-20 12:37:24.999336 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-20 12:37:26.064778 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-20 12:37:26.684782 - -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:37:27.016907 - -[56] Log opened at 2024-10-20 12:37:27.064558 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 12:37:28.453086 - -[46] Log opened at 2024-10-20 12:37:44.651549 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:37:47.396060 - -[46] Log opened at 2024-10-20 12:37:47.589831 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-20 12:37:47.652574 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:37:48.248774 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-20 12:37:48.838694 - -[53] Log opened at 2024-10-20 12:37:48.971332 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-20 12:37:49.014317 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-20 12:37:49.016107 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-20 12:37:50.062201 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:37:50.386372 - -[58] Log opened at 2024-10-20 12:37:50.436407 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-20 12:37:51.020463 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-20 12:37:51.780541 - -[48] Log opened at 2024-10-20 12:42:16.975038 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 12:42:19.508382 - -[48] Log opened at 2024-10-20 12:42:19.751330 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-20 12:42:19.817381 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 12:42:20.408367 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-20 12:42:21.048805 - -[46] Log opened at 2024-10-20 12:42:21.165548 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-20 12:42:21.166046 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:42:22.204227 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-20 12:42:22.918195 - -[54] Log opened at 2024-10-20 12:42:50.981016 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:42:53.700668 - -[54] Log opened at 2024-10-20 12:42:53.848491 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 12:42:53.920103 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:42:54.512785 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 12:42:55.150847 - -[48] Log opened at 2024-10-20 12:42:55.201118 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-20 12:42:55.308776 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-20 12:42:55.378041 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-20 12:42:56.394253 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-20 12:42:56.976387 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:42:57.315760 - -[56] Log opened at 2024-10-20 12:42:57.357881 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 12:42:58.709835 - -[59] Log opened at 2024-10-20 12:43:30.747192 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-20 12:43:33.468363 - -[59] Log opened at 2024-10-20 12:43:33.665570 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-20 12:43:33.725856 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-20 12:43:34.318558 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-20 12:43:34.971642 - -[55] Log opened at 2024-10-20 12:43:35.017359 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] Log opened at 2024-10-20 12:43:35.102671 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 12:43:35.121304 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:43:36.134777 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-20 12:43:36.753336 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 12:43:37.116318 - -[58] Log opened at 2024-10-20 12:43:37.159029 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-20 12:43:38.548942 - -[56] Log opened at 2024-10-20 12:44:45.877742 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 12:44:48.458444 - -[56] Log opened at 2024-10-20 12:44:48.667511 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] Log opened at 2024-10-20 12:44:48.735214 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 12:44:49.330186 - -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-20 12:44:49.929589 - -[54] Log opened at 2024-10-20 12:44:49.979416 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-20 12:44:50.075292 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 12:44:50.076303 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-20 12:44:51.102486 - -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-20 12:44:51.745786 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 12:44:52.118095 - -[61] Log opened at 2024-10-20 12:44:52.162114 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-20 12:44:53.554753 - -[58] Log opened at 2024-10-20 12:45:04.081448 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-20 12:45:06.883755 - -[58] Log opened at 2024-10-20 12:45:07.039803 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-20 12:45:07.103718 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-20 12:45:07.705008 - -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 12:45:08.505288 - -[62] Log opened at 2024-10-20 12:45:08.558294 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-20 12:45:08.657453 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 12:45:08.668116 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-20 12:45:09.739261 - -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-20 12:45:10.399328 - -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 12:45:10.737057 - -[41] Log opened at 2024-10-20 12:45:10.785284 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 12:45:12.433705 - -[61] Log opened at 2024-10-20 13:08:17.876462 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-20 13:08:20.529935 - -[60] Log opened at 2024-10-20 13:08:20.785880 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-20 13:08:20.842957 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:08:21.443925 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-20 13:08:22.034822 - -[58] Log opened at 2024-10-20 13:08:22.141023 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-20 13:08:22.167463 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:08:22.168086 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 13:08:23.250985 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-20 13:08:23.846396 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:08:24.190244 - -[64] Log opened at 2024-10-20 13:08:24.243259 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-20 13:08:25.637584 - -[41] Log opened at 2024-10-20 13:08:50.685087 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 13:08:53.277948 - -[41] Log opened at 2024-10-20 13:08:53.471201 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 13:08:53.524595 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 13:08:54.128501 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:08:54.710722 - -[61] Log opened at 2024-10-20 13:08:54.759184 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-20 13:08:54.859521 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-20 13:08:54.860760 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-20 13:08:55.891980 - -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-20 13:08:56.489431 - -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-20 13:08:56.831358 - -[61] Log opened at 2024-10-20 13:08:56.883340 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-20 13:08:58.309607 - -[64] Log opened at 2024-10-20 13:11:14.621298 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-20 13:11:17.361850 - -[64] Log opened at 2024-10-20 13:11:17.571080 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:11:17.622196 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-20 13:11:18.231116 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:11:18.785307 - -[41] Log opened at 2024-10-20 13:11:18.978165 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 13:11:19.080017 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] Log opened at 2024-10-20 13:11:19.080638 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:11:20.151431 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 13:11:21.662583 - -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-20 13:11:22.005234 - -[56] Log opened at 2024-10-20 13:11:22.114053 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 13:11:23.495446 - -[60] Log opened at 2024-10-20 13:11:44.812552 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:11:47.555818 - -[60] Log opened at 2024-10-20 13:11:47.709841 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 13:11:47.775615 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:11:48.371069 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:11:48.966007 - -[67] Log opened at 2024-10-20 13:11:49.015653 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 13:11:49.197431 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:11:49.202718 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:11:50.270068 - -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-20 13:11:50.930901 - -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:11:51.302434 - -[41] Log opened at 2024-10-20 13:11:51.345022 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-20 13:11:52.683249 - -[65] Log opened at 2024-10-20 13:12:31.084054 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log opened at 2024-10-20 13:12:39.968579 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-20 13:12:41.835564 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-20 13:12:45.358005 - -[68] Log opened at 2024-10-20 13:12:45.662404 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:12:45.732075 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-20 13:12:46.321540 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:12:47.015384 - -[63] Log opened at 2024-10-20 13:12:47.065477 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:12:47.190907 -[67] Log opened at 2024-10-20 13:12:47.190897 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:12:48.264042 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:12:50.844626 - -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-20 13:12:51.305404 - -[66] Log opened at 2024-10-20 13:12:51.352327 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:12:52.744149 - -[65] Log opened at 2024-10-20 13:13:46.780493 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-20 13:13:49.623136 - -[65] Log opened at 2024-10-20 13:13:49.821706 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:13:49.876182 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-20 13:13:50.474501 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:13:51.196277 - -[69] Log opened at 2024-10-20 13:13:51.251614 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 13:13:51.386547 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 13:13:51.389838 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:13:52.388112 - -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-20 13:13:53.065354 - -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:13:53.445514 - -[69] Log opened at 2024-10-20 13:13:53.491450 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-20 13:13:55.350763 - -[70] Log opened at 2024-10-20 13:16:03.564873 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:16:06.207212 - -[70] Log opened at 2024-10-20 13:16:06.421672 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] Log opened at 2024-10-20 13:16:06.479545 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:16:07.087743 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-20 13:16:07.728826 - -[63] Log opened at 2024-10-20 13:16:07.787510 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:16:07.888878 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 13:16:07.897597 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:16:08.973828 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:16:09.637489 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:16:09.981484 - -[65] Log opened at 2024-10-20 13:16:10.024945 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-20 13:16:11.386923 - -[71] Log opened at 2024-10-20 13:20:19.694650 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-20 13:20:22.500685 - -[70] Log opened at 2024-10-20 13:20:22.719400 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 13:20:22.770305 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:20:23.376876 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:20:24.000467 - -[60] Log opened at 2024-10-20 13:20:24.045465 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-20 13:20:24.147064 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] Log opened at 2024-10-20 13:20:24.152714 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:20:25.172604 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:20:25.819514 - -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-20 13:20:26.171627 - -[46] Log opened at 2024-10-20 13:20:26.219487 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:20:27.566205 - -[61] Log opened at 2024-10-20 13:21:41.360267 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-20 13:21:44.080518 - -[61] Log opened at 2024-10-20 13:21:44.296630 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-20 13:21:44.358169 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-20 13:21:44.953567 - -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:21:45.569665 - -[71] Log opened at 2024-10-20 13:21:45.616917 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:21:45.706843 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-20 13:21:45.710933 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:21:46.760929 - -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-20 13:21:47.407360 - -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:21:47.766227 - -[63] Log opened at 2024-10-20 13:21:47.811727 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:21:49.186731 - -[66] Log opened at 2024-10-20 13:23:04.339556 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:23:06.937539 - -[66] Log opened at 2024-10-20 13:23:07.037043 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:23:07.130769 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:23:07.686872 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:23:08.335788 - -[73] Log opened at 2024-10-20 13:23:08.366476 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-20 13:23:08.372260 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] Log opened at 2024-10-20 13:23:08.375047 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:23:09.396777 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-20 13:23:10.017391 - -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-20 13:23:10.379412 - -[73] Log opened at 2024-10-20 13:23:10.422965 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-20 13:23:11.860938 - -[46] Log opened at 2024-10-20 13:23:52.730717 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:23:55.585794 - -[46] Log opened at 2024-10-20 13:23:55.770261 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:23:55.820325 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:23:56.445715 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:23:57.057458 - -[46] Log opened at 2024-10-20 13:23:57.100619 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-20 13:23:57.199626 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-20 13:23:57.206998 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:23:58.266826 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:23:58.898632 - -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-20 13:23:59.274839 - -[56] Log opened at 2024-10-20 13:23:59.320487 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-20 13:24:00.681256 - -[63] Log opened at 2024-10-20 13:25:09.809513 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:25:12.508327 - -[63] Log opened at 2024-10-20 13:25:12.718755 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] Log opened at 2024-10-20 13:25:12.781033 -[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:25:13.377626 - -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] Log closed at 2024-10-20 13:25:13.993746 - -[60] Log opened at 2024-10-20 13:25:14.042346 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:25:14.138697 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-20 13:25:14.143021 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:25:15.210305 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:25:15.901133 - -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-20 13:25:16.257613 - -[46] Log opened at 2024-10-20 13:25:16.308696 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:25:17.700210 - -[72] Log opened at 2024-10-20 13:26:54.070087 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:26:56.809051 - -[72] Log opened at 2024-10-20 13:26:57.016030 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:26:57.082816 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:26:57.679019 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:26:58.317239 - -[60] Log opened at 2024-10-20 13:26:58.441737 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] Log opened at 2024-10-20 13:26:58.558296 -[63] Log opened at 2024-10-20 13:26:58.558230 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:26:59.565545 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:27:00.210127 - -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] Log closed at 2024-10-20 13:27:00.548150 - -[60] Log opened at 2024-10-20 13:27:00.623760 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:27:01.985036 - -[73] Log opened at 2024-10-20 13:27:19.835302 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-20 13:27:22.494641 - -[73] Log opened at 2024-10-20 13:27:22.714346 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 13:27:22.767944 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-20 13:27:23.382202 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:27:24.004038 - -[76] Log opened at 2024-10-20 13:27:24.059413 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-20 13:27:24.164173 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] Log opened at 2024-10-20 13:27:24.165712 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:27:25.240391 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:27:25.846797 - -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-20 13:27:26.209284 - -[66] Log opened at 2024-10-20 13:27:26.262230 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:27:27.666296 - -[46] Log opened at 2024-10-20 13:28:22.317413 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:28:25.138473 - -[46] Log opened at 2024-10-20 13:28:25.338498 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-20 13:28:25.390639 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:28:25.991038 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-20 13:28:26.608679 - -[73] Log opened at 2024-10-20 13:28:26.669820 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-20 13:28:26.792446 -[63] Log opened at 2024-10-20 13:28:26.792447 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:28:27.828140 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-20 13:28:28.495483 - -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:28:28.848003 - -[73] Log opened at 2024-10-20 13:28:28.918738 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-20 13:28:30.311848 - -[76] Log opened at 2024-10-20 13:28:33.964383 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:28:36.831422 - -[76] Log opened at 2024-10-20 13:28:37.042510 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] Log opened at 2024-10-20 13:28:37.092316 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:28:37.710596 - -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-20 13:28:38.322132 - -[79] Log opened at 2024-10-20 13:28:38.497292 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-20 13:28:38.635429 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:28:38.649248 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-20 13:28:39.667436 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:28:40.392974 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:28:40.759391 - -[79] Log opened at 2024-10-20 13:28:40.812417 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:28:42.235471 - -[63] Log opened at 2024-10-20 13:29:50.522654 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:29:53.265588 - -[63] Log opened at 2024-10-20 13:29:53.495235 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] Log opened at 2024-10-20 13:29:53.561018 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:29:54.156505 - -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-20 13:29:54.815452 - -[73] Log opened at 2024-10-20 13:29:54.884632 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-20 13:29:55.030812 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:29:55.046539 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:29:56.083876 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-20 13:29:56.739388 - -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:29:57.074521 - -[77] Log opened at 2024-10-20 13:29:57.121089 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-20 13:29:58.554993 - -[79] Log opened at 2024-10-20 13:30:16.226678 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:30:18.904772 - -[79] Log opened at 2024-10-20 13:30:19.109024 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] Log opened at 2024-10-20 13:30:19.159415 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:30:19.777348 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-20 13:30:20.401346 - -[78] Log opened at 2024-10-20 13:30:20.443516 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 13:30:20.540380 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] Log opened at 2024-10-20 13:30:20.542710 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:30:21.574054 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-20 13:30:22.212986 - -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-20 13:30:22.560324 - -[72] Log opened at 2024-10-20 13:30:22.606523 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:30:24.298451 - -[77] Log opened at 2024-10-20 13:30:35.281500 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-20 13:30:37.962026 - -[77] Log opened at 2024-10-20 13:30:38.175265 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-20 13:30:38.228731 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-20 13:30:38.836692 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:30:39.396362 - -[81] Log opened at 2024-10-20 13:30:39.454110 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:30:39.555008 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-20 13:30:39.560446 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:30:40.613706 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-20 13:30:41.221458 - -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:30:41.554165 - -[76] Log opened at 2024-10-20 13:30:41.615950 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:30:43.005588 - -[72] Log opened at 2024-10-20 13:39:01.323164 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:39:04.090661 - -[72] Log opened at 2024-10-20 13:39:04.297631 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:39:04.354169 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:39:04.970055 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:39:05.564928 - -[77] Log opened at 2024-10-20 13:39:05.609556 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:39:05.701725 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-20 13:39:05.702139 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-20 13:39:06.707653 - -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-20 13:39:07.302776 - -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:39:07.660112 - -[63] Log opened at 2024-10-20 13:39:07.704402 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:39:09.089004 - -[76] Log opened at 2024-10-20 13:39:26.865158 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:39:29.524928 - -[76] Log opened at 2024-10-20 13:39:29.704100 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:39:29.752998 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:39:30.360962 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:39:30.935414 - -[72] Log opened at 2024-10-20 13:39:30.996485 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-20 13:39:31.094047 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] Log opened at 2024-10-20 13:39:31.099341 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-20 13:39:32.102239 - -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-20 13:39:33.561804 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-20 13:39:34.191677 - -[82] Log opened at 2024-10-20 13:39:34.234454 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-20 13:39:36.489074 - -[63] Log opened at 2024-10-20 13:39:48.106381 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:39:50.786117 - -[63] Log opened at 2024-10-20 13:39:50.988755 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-20 13:39:51.037545 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:39:51.644696 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:39:52.237686 - -[83] Log opened at 2024-10-20 13:39:52.331684 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:39:52.362484 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] Log opened at 2024-10-20 13:39:52.365474 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:39:53.383615 - -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-20 13:39:54.042024 - -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-20 13:39:54.385644 - -[76] Log opened at 2024-10-20 13:39:54.435339 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:39:55.882277 - -[82] Log opened at 2024-10-20 13:40:30.265627 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-20 13:40:33.028109 - -[82] Log opened at 2024-10-20 13:40:33.224184 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:40:33.273721 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-20 13:40:33.888871 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:40:34.471277 - -[63] Log opened at 2024-10-20 13:40:34.515048 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-20 13:40:34.603243 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-20 13:40:34.607140 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-20 13:40:35.606816 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:40:36.275901 - -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-20 13:40:36.610128 - -[79] Log opened at 2024-10-20 13:40:36.661538 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:40:38.054745 - -[76] Log opened at 2024-10-20 13:41:57.492154 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:42:00.198313 - -[76] Log opened at 2024-10-20 13:42:00.402888 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:42:00.453434 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-20 13:42:00.706555 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:42:01.059025 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:42:01.617581 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:42:03.469404 - -[79] Log opened at 2024-10-20 13:42:03.614797 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-20 13:42:03.684315 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:42:04.283973 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-20 13:42:04.929169 - -[80] Log opened at 2024-10-20 13:42:04.973539 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] Log opened at 2024-10-20 13:42:05.082856 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] Log opened at 2024-10-20 13:42:05.083471 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-20 13:42:06.096073 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-20 13:42:06.713864 - -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-20 13:42:07.066769 - -[63] Log opened at 2024-10-20 13:42:07.113217 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-20 13:42:08.474332 - -[85] Log opened at 2024-10-20 13:42:44.056897 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-20 13:42:46.732786 - -[85] Log opened at 2024-10-20 13:42:46.938849 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-20 13:42:47.000157 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-20 13:42:47.601035 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-20 13:42:48.179525 - -[84] Log opened at 2024-10-20 13:42:48.230786 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-20 13:42:48.333750 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-20 13:42:48.334908 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-20 13:42:49.362783 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-20 13:42:50.008210 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-20 13:42:50.357707 - -[87] Log opened at 2024-10-20 13:42:50.401536 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-20 13:42:51.803913 - -[22] Log opened at 2024-10-21 14:21:32.502355 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 12 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-21 14:21:33.154065 - -[22] Log opened at 2024-10-21 14:21:33.158729 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 12 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-21 14:21:33.636447 - -[22] Log opened at 2024-10-21 14:21:33.769978 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 12 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-21 14:21:33.969749 - -[25] Log opened at 2024-10-21 14:21:34.168388 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:21:34.698674 - -[25] Log opened at 2024-10-21 14:21:35.525332 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:21:36.431891 - -[25] Log opened at 2024-10-21 14:21:36.441163 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:21:37.061932 - -[25] Log opened at 2024-10-21 14:21:37.111632 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:21:37.231123 - -[25] Log opened at 2024-10-21 14:21:37.312190 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[27] Log opened at 2024-10-21 14:21:37.333010 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 6 -[25] [Step Debug] <- run -i 12 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-21 14:21:37.827727 - -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:21:38.260900 - -[25] Log opened at 2024-10-21 14:21:41.244265 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:21:41.946659 - -[25] Log opened at 2024-10-21 14:21:42.012631 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:21:42.185894 - -[28] Log opened at 2024-10-21 14:21:42.312940 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] Log opened at 2024-10-21 14:21:42.318203 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[28] [Step Debug] -> - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[27] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[27] [Step Debug] -> - -[28] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[27] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[27] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[28] [Step Debug] -> - -[27] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[28] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[28] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[27] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[28] [Step Debug] -> - -[23] Log opened at 2024-10-21 14:21:42.426874 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[28] [Step Debug] <- run -i 14 -[23] [Step Debug] <- run -i 6 -[27] [Step Debug] <- run -i 14 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-21 14:21:43.074308 - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-21 14:21:43.511413 - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-21 14:21:43.748101 - -[28] Log opened at 2024-10-21 14:21:45.818374 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 12 -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-21 14:21:47.997794 - -[28] Log opened at 2024-10-21 14:21:48.066370 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[28] [Step Debug] -> - -[23] Log opened at 2024-10-21 14:21:48.083854 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[28] [Step Debug] -> - -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[28] [Step Debug] <- run -i 12 -[23] [Step Debug] <- run -i 6 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-21 14:21:48.221714 - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-21 14:21:48.779886 - -[28] Log opened at 2024-10-21 14:21:48.808408 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[23] Log opened at 2024-10-21 14:21:48.814538 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] Log opened at 2024-10-21 14:21:48.820996 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[23] [Step Debug] -> - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[28] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[30] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[23] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 -[30] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[30] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[23] [Step Debug] -> - -[28] [Step Debug] -> - -[30] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[23] [Step Debug] -> - -[30] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[30] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[23] [Step Debug] -> - -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 11 -n extended_properties -v 1 -[30] [Step Debug] -> - -[23] [Step Debug] <- run -i 12 -[28] [Step Debug] <- run -i 12 -[30] [Step Debug] <- run -i 12 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-21 14:21:49.330094 - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-21 14:21:49.702132 - -[30] [Step Debug] -> - -[30] Log closed at 2024-10-21 14:21:49.831231 - -[28] Log opened at 2024-10-21 14:21:49.875758 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 968 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 12 -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] <- stack_get -i 13 -[28] [Step Debug] -> - -[28] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_names -i 18 -d 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- property_get -i 20 -n "$presupuesto" -d 0 -c 0 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_remove -i 21 -d 280026 -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 22 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-21 14:21:54.972374 - -[24] Log opened at 2024-10-21 14:22:27.059187 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 11 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-21 14:22:27.563672 - -[24] Log opened at 2024-10-21 14:22:27.571560 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 11 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-21 14:22:27.995905 - -[26] Log opened at 2024-10-21 14:22:30.579786 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 11 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-21 14:22:32.766456 - -[25] Log opened at 2024-10-21 14:22:32.917793 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[26] Log opened at 2024-10-21 14:22:32.921980 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[26] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[26] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[26] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[26] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:22:33.099806 - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-21 14:22:33.640614 - -[25] Log opened at 2024-10-21 14:22:33.704063 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 11 -[27] Log opened at 2024-10-21 14:22:33.832926 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-21 14:22:33.833899 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[27] [Step Debug] -> - -[29] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[27] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[29] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 12 -[29] [Step Debug] <- run -i 12 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-21 14:22:34.403996 - -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:22:34.779141 - -[29] [Step Debug] -> - -[29] Log closed at 2024-10-21 14:22:34.916047 - -[27] Log opened at 2024-10-21 14:22:34.966465 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 433 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 11 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-21 14:22:35.791164 - -[23] Log opened at 2024-10-21 14:34:33.586787 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 11 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-21 14:34:35.665806 - -[23] Log opened at 2024-10-21 14:34:35.878518 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[26] Log opened at 2024-10-21 14:34:35.950727 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 6 -[23] [Step Debug] <- run -i 11 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-21 14:34:36.152837 - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-21 14:34:36.803515 - -[25] Log opened at 2024-10-21 14:34:37.208084 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[24] Log opened at 2024-10-21 14:34:37.213835 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[30] Log opened at 2024-10-21 14:34:37.225152 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[30] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[24] [Step Debug] -> - -[25] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[30] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[30] [Step Debug] -> - -[25] [Step Debug] -> - -[24] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[30] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[25] [Step Debug] -> - -[24] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[24] [Step Debug] -> - -[25] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1 -[30] [Step Debug] -> - -[24] [Step Debug] <- run -i 12 -[25] [Step Debug] <- run -i 12 -[30] [Step Debug] <- run -i 11 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-21 14:34:37.826010 - -[30] [Step Debug] -> - -[30] Log closed at 2024-10-21 14:34:37.950298 - -[24] Log opened at 2024-10-21 14:34:38.014692 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 11 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:34:38.368662 - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-21 14:34:38.912948 - -[25] Log opened at 2024-10-21 14:34:39.038030 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 435 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 11 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-21 14:34:50.572123 - -[26] Log opened at 2024-10-21 14:42:56.884474 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 14:42:58.183426 - -[28] Log opened at 2024-10-21 14:42:58.265539 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-21 14:42:58.937554 - -[28] Log opened at 2024-10-21 14:42:59.062229 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-21 14:42:59.075823 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 14:42:59.213319 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 14:43:00.045885 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-21 14:43:00.686676 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 14:43:01.120746 - -[24] Log opened at 2024-10-21 14:43:14.559655 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 14:43:18.031528 - -[24] Log opened at 2024-10-21 14:43:18.126967 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-21 14:43:18.131326 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-10-21 14:43:18.132470 -[32] Log opened at 2024-10-21 14:43:18.132543 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[27] Log opened at 2024-10-21 14:43:18.132124 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-21 14:43:18.134791 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 14:43:18.817454 - -[24] Log opened at 2024-10-21 14:43:18.819991 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 14:43:19.251736 - -[31] Log opened at 2024-10-21 14:43:19.254472 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-21 14:43:19.592281 - -[32] Log opened at 2024-10-21 14:43:19.594236 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 14:43:19.936761 - -[34] Log opened at 2024-10-21 14:43:19.938956 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-21 14:43:20.281054 - -[27] Log opened at 2024-10-21 14:43:20.283339 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-21 14:43:20.723844 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 14:43:21.074413 - -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 14:43:21.419036 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-21 14:43:21.753019 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 14:43:22.088144 - -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-21 14:43:22.438633 - -[25] Log opened at 2024-10-21 14:43:22.497364 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-21 14:43:22.501950 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-21 14:43:22.556838 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-10-21 14:43:22.568824 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-21 14:43:22.570618 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 14:43:22.618772 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-21 14:43:23.636685 - -[32] Log opened at 2024-10-21 14:43:23.638698 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-21 14:43:24.193380 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-21 14:43:24.730511 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 14:43:25.275705 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 14:43:25.948593 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 14:43:26.612564 - -[25] Log opened at 2024-10-21 14:43:26.627955 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-21 14:43:26.628477 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-10-21 14:43:26.628852 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-21 14:43:26.988283 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-21 14:43:27.725448 - -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-21 14:43:28.080140 - -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 14:43:28.436784 - -[26] Log opened at 2024-10-21 14:44:13.781417 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 14:44:14.713987 - -[26] Log opened at 2024-10-21 14:44:14.723334 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 14:44:15.683821 - -[30] Log opened at 2024-10-21 14:49:59.348188 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-21 14:49:59.365326 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-21 14:49:59.383370 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 14:49:59.399724 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-21 14:49:59.425170 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 14:50:11.707535 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 14:50:23.621608 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 14:50:35.117754 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-21 14:50:47.095438 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 14:50:59.973426 - -[28] Log opened at 2024-10-21 14:59:14.509914 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log opened at 2024-10-21 14:59:16.265120 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-21 14:59:17.097617 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 14:59:18.851462 - -[34] Log opened at 2024-10-21 14:59:19.052269 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 14:59:19.108632 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 14:59:19.710173 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 14:59:20.307144 - -[24] Log opened at 2024-10-21 14:59:20.379318 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-21 14:59:20.470058 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[32] Log opened at 2024-10-21 14:59:20.470058 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-21 14:59:21.541670 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 14:59:22.127892 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 14:59:22.469656 - -[27] Log opened at 2024-10-21 14:59:22.515421 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-21 14:59:23.891995 - -[26] Log opened at 2024-10-21 15:00:59.454961 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 15:01:01.973925 - -[26] Log opened at 2024-10-21 15:01:02.167123 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-21 15:01:02.221090 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 15:01:02.830518 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-21 15:01:03.447240 - -[27] Log opened at 2024-10-21 15:01:03.559549 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 15:01:03.579172 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[28] Log opened at 2024-10-21 15:01:03.579331 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:01:04.619368 - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] Log closed at 2024-10-21 15:01:05.267615 - -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-21 15:01:05.617283 - -[34] Log opened at 2024-10-21 15:01:05.660047 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:01:07.053497 - -[35] Log opened at 2024-10-21 15:03:00.120516 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 15:03:02.752660 - -[35] Log opened at 2024-10-21 15:03:02.949407 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-10-21 15:03:03.013655 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 15:03:03.617542 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 15:03:04.232540 - -[36] Log opened at 2024-10-21 15:03:04.330068 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-21 15:03:04.375440 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 15:03:04.383409 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 15:03:05.465055 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-21 15:03:06.038392 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:03:06.369829 - -[31] Log opened at 2024-10-21 15:03:06.417076 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 15:03:07.799320 - -[34] Log opened at 2024-10-21 15:04:05.598702 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:04:08.113939 - -[34] Log opened at 2024-10-21 15:04:08.305713 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-21 15:04:08.387061 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:04:08.973620 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 15:04:09.610948 - -[26] Log opened at 2024-10-21 15:04:09.657375 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 15:04:09.756867 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-21 15:04:09.757263 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:04:10.817743 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-21 15:04:11.419988 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:04:11.749258 - -[35] Log opened at 2024-10-21 15:04:11.793408 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 15:04:13.161628 - -[31] Log opened at 2024-10-21 15:04:35.053640 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 15:04:37.580023 - -[31] Log opened at 2024-10-21 15:04:37.781644 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-21 15:04:37.840285 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 15:04:38.435082 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-21 15:04:39.036882 - -[39] Log opened at 2024-10-21 15:04:39.084205 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-21 15:04:39.168926 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] Log opened at 2024-10-21 15:04:39.176018 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:04:40.205376 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:04:40.778017 - -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-21 15:04:41.096661 - -[24] Log opened at 2024-10-21 15:04:41.141982 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:04:42.473224 - -[30] Log opened at 2024-10-21 15:05:45.958780 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:05:48.475278 - -[30] Log opened at 2024-10-21 15:05:48.704122 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-21 15:05:48.767026 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:05:49.373202 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-21 15:05:49.963089 - -[31] Log opened at 2024-10-21 15:05:50.021241 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-21 15:05:50.150369 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-10-21 15:05:50.163064 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:05:51.274138 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-21 15:05:51.865420 - -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:05:52.202919 - -[39] Log opened at 2024-10-21 15:05:52.247546 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:05:53.605864 - -[37] Log opened at 2024-10-21 15:06:03.515937 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:06:05.989943 - -[37] Log opened at 2024-10-21 15:06:06.197863 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-21 15:06:06.259810 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:06:06.862291 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-21 15:06:07.419936 - -[41] Log opened at 2024-10-21 15:06:07.467353 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-21 15:06:07.563510 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-21 15:06:07.571148 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 15:06:08.661143 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-21 15:06:09.250168 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-21 15:06:09.588955 - -[34] Log opened at 2024-10-21 15:06:09.634034 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:06:10.977407 - -[39] Log opened at 2024-10-21 15:07:20.450456 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:07:23.062198 - -[24] Log opened at 2024-10-21 15:07:23.406519 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 15:07:23.484238 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:07:24.064866 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:07:24.836751 - -[35] Log opened at 2024-10-21 15:07:24.898018 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-21 15:07:24.990807 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-21 15:07:25.011255 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:07:26.169158 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-21 15:07:26.788128 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:07:27.126921 - -[24] Log opened at 2024-10-21 15:07:27.184383 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:07:28.610015 - -[34] Log opened at 2024-10-21 15:07:39.830303 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:07:42.416679 - -[34] Log opened at 2024-10-21 15:07:42.614405 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 15:07:42.676342 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:07:43.276468 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:07:43.951220 - -[43] Log opened at 2024-10-21 15:07:44.004033 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-21 15:07:44.079243 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-10-21 15:07:44.095974 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:07:45.151961 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-21 15:07:45.747755 - -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:07:46.110308 - -[39] Log opened at 2024-10-21 15:07:46.159165 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:07:47.505340 - -[24] Log opened at 2024-10-21 15:09:21.296294 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:09:23.793670 - -[24] Log opened at 2024-10-21 15:09:24.045268 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-21 15:09:24.111127 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:09:24.707340 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:09:25.285328 - -[38] Log opened at 2024-10-21 15:09:25.334669 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] Log opened at 2024-10-21 15:09:25.489345 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-21 15:09:25.498111 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-21 15:09:26.542862 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-21 15:09:27.133485 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-21 15:09:27.470724 - -[42] Log opened at 2024-10-21 15:09:27.522091 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:09:28.965573 - -[39] Log opened at 2024-10-21 15:09:53.672910 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:09:56.211989 - -[39] Log opened at 2024-10-21 15:09:56.418522 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-21 15:09:56.482439 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:09:57.083782 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:09:57.664329 - -[44] Log opened at 2024-10-21 15:09:57.719836 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 15:09:57.816368 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:09:57.816818 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:09:58.880403 - -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[44] Log closed at 2024-10-21 15:09:59.456654 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:09:59.797415 - -[37] Log opened at 2024-10-21 15:09:59.845212 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:10:01.244054 - -[42] Log opened at 2024-10-21 15:13:13.660495 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:13:16.362011 - -[42] Log opened at 2024-10-21 15:13:16.592230 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 15:13:16.654956 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:13:17.251315 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:13:17.827566 - -[40] Log opened at 2024-10-21 15:13:17.974830 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-21 15:13:18.091380 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-21 15:13:18.134490 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-21 15:13:19.134402 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:13:19.736367 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:13:20.105395 - -[45] Log opened at 2024-10-21 15:13:20.173269 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:13:21.477803 - -[37] Log opened at 2024-10-21 15:19:09.820724 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 12 -[37] [Step Debug] -> - -[37] [Step Debug] -> - -[37] Log closed at 2024-10-21 15:19:11.721637 - -[37] Log opened at 2024-10-21 15:19:11.933267 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[34] Log opened at 2024-10-21 15:19:12.004753 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 6 -[37] [Step Debug] <- run -i 12 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-21 15:19:12.117495 - -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[34] [Step Debug] -> - -[34] Log closed at 2024-10-21 15:19:12.635813 - -[30] Log opened at 2024-10-21 15:19:12.766616 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[30] [Step Debug] -> - -[30] [Step Debug] <- run -i 12 -[42] Log opened at 2024-10-21 15:19:12.883692 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[42] [Step Debug] -> - -[37] Log opened at 2024-10-21 15:19:12.889559 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[42] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[42] [Step Debug] -> - -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[42] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[42] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[37] [Step Debug] -> - -[42] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[37] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[42] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[42] [Step Debug] -> - -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[37] [Step Debug] -> - -[42] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[37] [Step Debug] -> - -[42] [Step Debug] -> - -[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[42] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[37] [Step Debug] -> - -[42] [Step Debug] <- run -i 14 -[37] [Step Debug] <- run -i 14 -[42] [Step Debug] -> - -[42] Log closed at 2024-10-21 15:19:13.516725 - -[30] [Step Debug] -> - -[30] Log closed at 2024-10-21 15:19:13.866034 - -[37] [Step Debug] -> - -[37] Log closed at 2024-10-21 15:19:13.990170 - -[46] Log opened at 2024-10-21 15:19:14.046373 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[46] [Step Debug] -> - -[46] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2362 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[46] [Step Debug] -> - -[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[46] [Step Debug] -> - -[46] [Step Debug] <- run -i 12 -[46] [Step Debug] -> - -[46] [Step Debug] -> - -[46] [Step Debug] <- stack_get -i 13 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- context_names -i 18 -d 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- step_over -i 20 -[46] [Step Debug] -> - -[46] [Step Debug] <- stack_get -i 21 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 24 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 25 -n "$datos_papel" -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- context_names -i 26 -d 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- context_get -i 27 -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 28 -n "$return_data[\"guardas\"]" -p 0 -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- property_get -i 29 -n "$return_data[\"guardas\"][\"papel\"]" -p 0 -d 0 -c 0 -[46] [Step Debug] -> - -[46] [Step Debug] <- run -i 30 -[46] [Step Debug] -> - -[46] Log closed at 2024-10-21 15:19:56.303814 - -[40] Log opened at 2024-10-21 15:20:01.208045 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:20:03.803365 - -[40] Log opened at 2024-10-21 15:20:04.078616 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-21 15:20:04.157792 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:20:04.748778 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:20:05.387426 - -[47] Log opened at 2024-10-21 15:20:05.446821 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 15:20:05.591425 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-10-21 15:20:05.605790 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:20:06.670011 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-21 15:20:07.249489 - -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:20:07.595551 - -[48] Log opened at 2024-10-21 15:20:07.644930 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-21 15:20:09.065052 - -[30] Log opened at 2024-10-21 15:20:23.879355 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:20:26.559959 - -[30] Log opened at 2024-10-21 15:20:26.769184 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 15:20:26.831716 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:20:27.437200 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:20:27.984160 - -[46] Log opened at 2024-10-21 15:20:28.050597 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-21 15:20:28.133473 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-21 15:20:28.147556 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:20:29.212627 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-21 15:20:29.864276 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-21 15:20:30.208332 - -[24] Log opened at 2024-10-21 15:20:30.257413 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:20:31.638943 - -[46] Log opened at 2024-10-21 15:20:31.757379 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-21 15:20:32.907292 - -[42] Log opened at 2024-10-21 15:21:58.655962 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:22:01.276029 - -[42] Log opened at 2024-10-21 15:22:01.483272 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:22:01.546278 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:22:02.141707 - -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:22:02.738325 - -[37] Log opened at 2024-10-21 15:22:02.781723 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-21 15:22:02.874343 -[49] Log opened at 2024-10-21 15:22:02.874686 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-21 15:22:03.909052 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:22:04.485486 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-21 15:22:04.831311 - -[46] Log opened at 2024-10-21 15:22:04.876665 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-21 15:22:06.200465 - -[37] Log opened at 2024-10-21 15:22:06.318371 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:22:19.135018 - -[40] Log opened at 2024-10-21 15:23:09.573745 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:23:12.183323 - -[40] Log opened at 2024-10-21 15:23:12.384772 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-21 15:23:12.443900 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:23:13.040410 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:23:13.594341 - -[48] Log opened at 2024-10-21 15:23:13.668188 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-21 15:23:13.789553 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-21 15:23:13.804187 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-21 15:23:14.837962 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-21 15:23:15.404768 - -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-21 15:23:15.748694 - -[45] Log opened at 2024-10-21 15:23:15.797329 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:23:17.141887 - -[40] Log opened at 2024-10-21 15:35:47.316553 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:35:49.880381 - -[40] Log opened at 2024-10-21 15:35:50.079183 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:35:50.135117 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:35:50.747660 - -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:35:51.322827 - -[50] Log opened at 2024-10-21 15:35:51.376665 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-21 15:35:51.481364 -[48] Log opened at 2024-10-21 15:35:51.481348 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-21 15:35:52.506966 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-21 15:35:53.084176 - -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-21 15:35:53.419948 - -[42] Log opened at 2024-10-21 15:35:53.463464 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:35:54.936645 - -[24] Log opened at 2024-10-21 15:36:12.744390 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:36:15.426821 - -[24] Log opened at 2024-10-21 15:36:15.670947 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-21 15:36:15.733165 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:36:16.337115 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 15:36:17.004371 - -[40] Log opened at 2024-10-21 15:36:17.055432 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:36:17.162030 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-21 15:36:17.165617 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:36:18.239922 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-21 15:36:18.836559 - -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-21 15:36:19.174052 - -[48] Log opened at 2024-10-21 15:36:19.216560 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-21 15:36:20.650397 - -[42] Log opened at 2024-10-21 15:36:56.967385 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:36:59.585461 - -[42] Log opened at 2024-10-21 15:36:59.763647 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-21 15:36:59.822081 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:37:00.420938 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:37:01.032011 - -[53] Log opened at 2024-10-21 15:37:01.080853 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:37:01.173838 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-21 15:37:01.180466 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:37:02.230333 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-21 15:37:02.774872 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:37:03.125127 - -[24] Log opened at 2024-10-21 15:37:03.178560 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:37:04.640218 - -[48] Log opened at 2024-10-21 15:42:52.678990 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-21 15:42:53.620588 - -[49] Log opened at 2024-10-21 15:42:53.901288 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-21 15:42:54.837949 - -[54] Log opened at 2024-10-21 15:43:09.723480 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-21 15:43:11.053887 - -[42] Log opened at 2024-10-21 15:43:11.353281 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:43:12.265426 - -[51] Log opened at 2024-10-21 15:43:31.143771 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 15:43:32.880108 - -[51] Log opened at 2024-10-21 15:43:33.029463 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] Log opened at 2024-10-21 15:43:33.097750 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 15:43:33.698103 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-21 15:43:34.296058 - -[37] Log opened at 2024-10-21 15:43:34.346293 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 15:43:34.459904 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:43:34.464058 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:43:35.459245 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-21 15:43:36.029847 - -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:43:36.363129 - -[52] Log opened at 2024-10-21 15:43:36.407751 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-21 15:43:38.032067 - -[42] Log opened at 2024-10-21 15:44:41.504546 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:44:43.199929 - -[42] Log opened at 2024-10-21 15:44:43.396288 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 15:44:43.457087 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:44:44.064429 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:44:44.631380 - -[52] Log opened at 2024-10-21 15:44:44.698905 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-21 15:44:44.796068 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-21 15:44:44.808048 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-21 15:44:45.761831 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-21 15:44:46.334963 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 15:44:46.684635 - -[53] Log opened at 2024-10-21 15:44:46.725175 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-21 15:44:48.382919 - -[49] Log opened at 2024-10-21 15:46:06.383621 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-21 15:46:08.120396 - -[49] Log opened at 2024-10-21 15:46:08.339195 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-21 15:46:08.402554 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-21 15:46:08.998432 - -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-21 15:46:09.563677 - -[54] Log opened at 2024-10-21 15:46:09.610557 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-21 15:46:09.708901 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-21 15:46:09.710926 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-21 15:46:10.711773 - -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-21 15:46:11.322162 - -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 15:46:11.654796 - -[24] Log opened at 2024-10-21 15:46:11.709486 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:46:13.339050 - -[53] Log opened at 2024-10-21 15:55:13.269461 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-21 15:55:15.047433 - -[53] Log opened at 2024-10-21 15:55:15.246412 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 15:55:15.307950 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-21 15:55:15.912340 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 15:55:16.518199 - -[49] Log opened at 2024-10-21 15:55:16.587984 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:55:16.721258 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-21 15:55:16.728800 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:55:17.690717 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-21 15:55:18.302333 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-21 15:55:18.641764 - -[57] Log opened at 2024-10-21 15:55:18.683844 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 15:55:20.208593 - -[24] Log opened at 2024-10-21 15:59:36.159930 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:59:37.861673 - -[24] Log opened at 2024-10-21 15:59:38.043807 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 15:59:38.101680 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 15:59:38.704752 - -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 15:59:39.264749 - -[53] Log opened at 2024-10-21 15:59:39.309155 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-21 15:59:39.397131 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-21 15:59:39.402079 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-21 15:59:40.375641 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-21 15:59:40.944723 - -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 15:59:41.298786 - -[51] Log opened at 2024-10-21 15:59:41.351959 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 15:59:42.848944 - -[57] Log opened at 2024-10-21 16:01:22.592166 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:01:24.336798 - -[57] Log opened at 2024-10-21 16:01:24.544654 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 16:01:24.605251 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:01:25.204908 - -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 16:01:25.757541 - -[24] Log opened at 2024-10-21 16:01:25.828427 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-21 16:01:25.940598 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-21 16:01:25.940970 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:01:26.889968 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:01:27.487181 - -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-21 16:01:27.810265 - -[42] Log opened at 2024-10-21 16:01:27.858943 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 16:01:29.447277 - -[24] Log opened at 2024-10-21 16:01:29.512838 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-21 16:01:29.512839 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:01:30.656698 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-21 16:01:31.070448 - -[58] Log opened at 2024-10-21 16:01:43.268950 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:01:44.387862 - -[58] Log opened at 2024-10-21 16:01:47.298464 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:01:48.438130 - -[58] Log opened at 2024-10-21 16:01:48.454793 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:01:53.288981 - -[60] Log opened at 2024-10-21 16:03:47.302417 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:03:49.042009 - -[60] Log opened at 2024-10-21 16:03:49.247138 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-21 16:03:49.311397 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:03:49.901450 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:03:50.498148 - -[24] Log opened at 2024-10-21 16:03:50.556041 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 16:03:50.705031 -[56] Log opened at 2024-10-21 16:03:50.705090 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 16:03:51.656597 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:03:52.238913 - -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-21 16:03:52.578424 - -[59] Log opened at 2024-10-21 16:03:52.624535 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:03:54.145974 - -[24] Log opened at 2024-10-21 16:03:54.178300 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-21 16:03:54.178444 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:03:55.266816 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:03:55.679342 - -[51] Log opened at 2024-10-21 16:04:48.693296 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 16:04:50.396403 - -[51] Log opened at 2024-10-21 16:04:50.605525 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:04:50.667064 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 16:04:51.273633 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:04:51.844552 - -[55] Log opened at 2024-10-21 16:04:51.893667 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-21 16:04:51.980280 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] Log opened at 2024-10-21 16:04:51.980641 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-21 16:04:53.030744 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-21 16:04:53.584704 - -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-21 16:04:53.928589 - -[57] Log opened at 2024-10-21 16:04:53.978828 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:04:55.582155 - -[55] Log opened at 2024-10-21 16:04:55.681627 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 16:04:55.681630 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-21 16:04:56.821665 - -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:04:57.212881 - -[59] Log opened at 2024-10-21 16:05:02.795948 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:05:04.564788 - -[59] Log opened at 2024-10-21 16:05:04.744781 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-21 16:05:04.803958 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:05:05.408600 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 16:05:06.024499 - -[60] Log opened at 2024-10-21 16:05:06.072223 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] Log opened at 2024-10-21 16:05:06.152812 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] Log opened at 2024-10-21 16:05:06.153248 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-21 16:05:07.159747 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:05:07.766807 - -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-21 16:05:08.104117 - -[58] Log opened at 2024-10-21 16:05:08.157323 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:05:09.672379 - -[60] Log opened at 2024-10-21 16:05:09.753149 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-21 16:05:09.771672 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:05:10.916869 - -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:05:11.310415 - -[57] Log opened at 2024-10-21 16:09:19.880393 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:09:21.579945 - -[57] Log opened at 2024-10-21 16:09:21.743409 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 16:09:21.801837 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:09:22.399804 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:09:22.973738 - -[63] Log opened at 2024-10-21 16:09:23.008866 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-21 16:09:23.012042 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-21 16:09:23.017913 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:09:23.997464 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:09:24.575168 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-21 16:09:24.915025 - -[63] Log opened at 2024-10-21 16:09:24.960731 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:09:26.513197 - -[63] Log opened at 2024-10-21 16:09:26.542648 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[59] Log opened at 2024-10-21 16:09:26.543089 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:09:27.657692 - -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:09:28.036961 - -[58] Log opened at 2024-10-21 16:12:04.957300 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:12:06.684031 - -[58] Log opened at 2024-10-21 16:12:06.847954 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] Log opened at 2024-10-21 16:12:06.914532 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:12:07.512982 - -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-21 16:12:08.093583 - -[57] Log opened at 2024-10-21 16:12:08.126047 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] Log opened at 2024-10-21 16:12:08.134001 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-21 16:12:08.141067 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-21 16:12:09.104694 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:12:09.740415 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-21 16:12:10.089317 - -[57] Log opened at 2024-10-21 16:12:10.137269 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:12:11.667444 - -[61] Log opened at 2024-10-21 16:12:11.701360 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 16:12:11.701360 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-21 16:12:12.796693 - -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:12:13.194089 - -[59] Log opened at 2024-10-21 16:14:36.583107 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:14:38.277338 - -[59] Log opened at 2024-10-21 16:14:38.549013 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 16:14:38.624663 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:14:39.209945 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:14:39.823296 - -[58] Log opened at 2024-10-21 16:14:39.875437 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:14:39.984964 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] Log opened at 2024-10-21 16:14:39.992504 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:14:40.970071 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:14:41.600988 - -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-21 16:14:41.929696 - -[58] Log opened at 2024-10-21 16:14:41.981194 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:14:43.544558 - -[63] Log opened at 2024-10-21 16:15:08.045413 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:15:09.753091 - -[63] Log opened at 2024-10-21 16:15:09.966990 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] Log opened at 2024-10-21 16:15:10.033889 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:15:10.630174 - -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-21 16:15:11.289773 - -[59] Log opened at 2024-10-21 16:15:11.337295 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:15:11.431147 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:15:11.434397 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:15:12.415288 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:15:13.008076 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:15:13.350800 - -[24] Log opened at 2024-10-21 16:15:13.393814 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:15:14.931325 - -[59] Log opened at 2024-10-21 16:15:14.983390 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 16:15:14.985548 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-21 16:15:16.121834 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:15:16.518964 - -[57] Log opened at 2024-10-21 16:15:39.528955 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:15:41.196187 - -[57] Log opened at 2024-10-21 16:15:41.412577 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-21 16:15:41.481777 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:15:42.070112 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:15:42.711617 - -[67] Log opened at 2024-10-21 16:15:42.759126 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:15:42.877994 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:15:42.886511 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:15:43.871461 - -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-21 16:15:44.482193 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:15:44.823822 - -[66] Log opened at 2024-10-21 16:15:44.865505 -[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[66] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[66] Log closed at 2024-10-21 16:15:46.431119 - -[24] Log opened at 2024-10-21 16:16:12.156211 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[58] Log opened at 2024-10-21 16:16:12.156211 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:16:13.357634 - -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:16:13.747154 - -[68] Log opened at 2024-10-21 16:17:00.694756 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:17:02.427822 - -[68] Log opened at 2024-10-21 16:17:02.629274 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:17:02.686040 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:17:03.291232 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:17:03.908190 - -[57] Log opened at 2024-10-21 16:17:03.960716 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-21 16:17:04.075778 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:17:04.078503 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:17:05.081933 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:17:05.765536 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:17:06.128128 - -[67] Log opened at 2024-10-21 16:17:06.176888 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-21 16:17:07.648985 - -[24] Log opened at 2024-10-21 16:18:16.726543 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-21 16:18:16.726543 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-21 16:18:17.886740 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:18:18.364868 - -[69] Log opened at 2024-10-21 16:19:06.460741 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-21 16:19:08.168192 - -[69] Log opened at 2024-10-21 16:19:08.399530 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:19:08.463935 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-21 16:19:09.061377 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:19:09.701314 - -[57] Log opened at 2024-10-21 16:19:09.750057 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] Log opened at 2024-10-21 16:19:09.880336 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-21 16:19:09.881231 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:19:10.875200 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:19:11.443270 - -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:19:11.777321 - -[65] Log opened at 2024-10-21 16:19:11.826600 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:19:13.382144 - -[65] Log opened at 2024-10-21 16:19:17.169363 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] Log opened at 2024-10-21 16:19:17.170536 -[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[67] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[67] Log closed at 2024-10-21 16:19:19.155838 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:19:19.948202 - -[70] Log opened at 2024-10-21 16:23:12.117190 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:23:13.107456 - -[69] Log opened at 2024-10-21 16:23:13.128398 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-21 16:23:14.079316 - -[69] Log opened at 2024-10-21 16:23:14.300168 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-21 16:23:14.946160 - -[57] Log opened at 2024-10-21 16:23:15.275313 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:23:16.237098 - -[57] Log opened at 2024-10-21 16:23:17.542888 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:23:18.976928 - -[57] Log opened at 2024-10-21 16:23:18.991214 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:23:20.705379 - -[57] Log opened at 2024-10-21 16:23:20.906071 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:23:20.909419 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:23:21.561842 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:23:22.063950 - -[57] Log opened at 2024-10-21 16:23:22.161914 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:23:22.279486 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-21 16:23:22.315660 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:23:23.262943 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:23:23.904385 - -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-21 16:23:24.248161 - -[57] Log opened at 2024-10-21 16:23:24.303417 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:23:25.822675 - -[65] Log opened at 2024-10-21 16:23:25.859096 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 16:23:25.858735 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:23:26.951311 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:23:27.367737 - -[24] Log opened at 2024-10-21 16:25:05.648423 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:25:07.371313 - -[24] Log opened at 2024-10-21 16:25:07.587810 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] Log opened at 2024-10-21 16:25:07.647867 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:25:08.244504 - -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-21 16:25:08.867438 - -[70] Log opened at 2024-10-21 16:25:08.955129 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] Log opened at 2024-10-21 16:25:09.145413 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] Log opened at 2024-10-21 16:25:09.150244 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:25:10.102337 - -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:25:10.683761 - -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-21 16:25:11.025393 - -[70] Log opened at 2024-10-21 16:25:11.077582 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:25:12.659830 - -[68] Log opened at 2024-10-21 16:25:12.704594 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-21 16:25:12.704592 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:25:13.814258 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:25:14.244847 - -[65] Log opened at 2024-10-21 16:26:21.172292 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:26:22.914282 - -[65] Log opened at 2024-10-21 16:26:23.114119 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-21 16:26:23.171722 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:26:23.768642 - -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-21 16:26:24.336654 - -[69] Log opened at 2024-10-21 16:26:24.634647 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-21 16:26:24.682890 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[60] Log opened at 2024-10-21 16:26:24.682928 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:26:25.650287 - -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-21 16:26:26.258741 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:26:26.599736 - -[69] Log opened at 2024-10-21 16:26:26.654156 -[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[69] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[69] Log closed at 2024-10-21 16:26:28.322789 - -[70] Log opened at 2024-10-21 16:26:35.102223 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] Log opened at 2024-10-21 16:26:35.102771 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:26:36.225555 - -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:26:36.616630 - -[73] Log opened at 2024-10-21 16:26:50.580555 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:26:52.423859 - -[73] Log opened at 2024-10-21 16:26:52.666801 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:26:52.732287 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:26:53.329526 - -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:26:53.941188 - -[24] Log opened at 2024-10-21 16:26:54.002940 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-21 16:26:54.138182 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:26:54.141142 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-21 16:26:55.143550 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:26:55.754023 - -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:26:56.098084 - -[71] Log opened at 2024-10-21 16:26:56.151353 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:26:57.746010 - -[24] Log opened at 2024-10-21 16:26:57.796002 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:26:57.796002 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-21 16:26:58.923531 - -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:26:59.323203 - -[57] Log opened at 2024-10-21 16:27:42.897097 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:27:44.593039 - -[57] Log opened at 2024-10-21 16:27:44.813564 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:27:44.879969 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:27:45.478312 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:27:46.080043 - -[72] Log opened at 2024-10-21 16:27:46.161399 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:27:46.330417 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:27:46.340964 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:27:47.281121 - -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-21 16:27:47.909658 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:27:48.252856 - -[65] Log opened at 2024-10-21 16:27:48.302276 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:27:49.880064 - -[72] Log opened at 2024-10-21 16:27:49.910416 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:27:49.910913 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:27:49.973392 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-21 16:27:51.032597 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:27:51.435297 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:28:05.315559 - -[68] Log opened at 2024-10-21 16:29:42.195034 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:29:43.964697 - -[70] Log opened at 2024-10-21 16:29:44.208477 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 16:29:44.276888 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:29:44.868477 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:29:45.484577 - -[75] Log opened at 2024-10-21 16:29:45.555176 -[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:29:45.653735 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-21 16:29:45.658059 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:29:46.674979 - -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] Log closed at 2024-10-21 16:29:47.290883 - -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:29:47.633111 - -[57] Log opened at 2024-10-21 16:29:47.683703 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:29:49.274713 - -[75] Log opened at 2024-10-21 16:29:49.311141 -[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 16:29:49.311615 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:29:49.368264 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-21 16:29:49.390061 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:29:50.484402 - -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] Log closed at 2024-10-21 16:29:50.904423 - -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:30:04.903681 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:30:20.531149 - -[74] Log opened at 2024-10-21 16:31:34.809285 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:31:36.569466 - -[74] Log opened at 2024-10-21 16:31:36.814685 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] Log opened at 2024-10-21 16:31:36.879509 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:31:37.478261 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:31:38.045126 - -[76] Log opened at 2024-10-21 16:31:38.110921 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 16:31:38.224554 -[71] Log opened at 2024-10-21 16:31:38.224554 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:31:39.201632 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:31:39.797234 - -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:31:40.150270 - -[60] Log opened at 2024-10-21 16:31:40.197299 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:31:41.710664 - -[76] Log opened at 2024-10-21 16:31:41.744470 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:31:41.744534 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-21 16:31:41.808977 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:31:41.827211 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:31:42.950523 - -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-21 16:31:56.362290 - -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:32:11.374918 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:32:11.769192 - -[73] Log opened at 2024-10-21 16:32:21.822839 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:32:23.621819 - -[73] Log opened at 2024-10-21 16:32:23.854487 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:32:23.915386 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:32:24.527765 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:32:25.084493 - -[60] Log opened at 2024-10-21 16:32:25.141343 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] Log opened at 2024-10-21 16:32:25.267399 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:32:25.271078 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-21 16:32:26.239236 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:32:26.876073 - -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:32:27.220945 - -[65] Log opened at 2024-10-21 16:32:27.272911 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:32:28.853943 - -[60] Log opened at 2024-10-21 16:32:28.889572 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:32:28.889854 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] Log opened at 2024-10-21 16:32:28.956248 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:32:28.997684 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:32:30.054479 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:32:30.458253 - -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] Log closed at 2024-10-21 16:32:45.385953 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:32:59.762290 - -[70] Log opened at 2024-10-21 16:33:21.898317 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:33:23.618535 - -[70] Log opened at 2024-10-21 16:33:23.850238 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:33:23.907365 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:33:24.510210 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:33:25.063343 - -[68] Log opened at 2024-10-21 16:33:25.131868 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:33:25.248735 -[65] Log opened at 2024-10-21 16:33:25.248736 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:33:26.271520 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:33:26.883942 - -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:33:27.220782 - -[60] Log opened at 2024-10-21 16:33:27.292153 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:33:28.859510 - -[68] Log opened at 2024-10-21 16:33:28.896447 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:33:28.897558 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:33:28.967669 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:33:28.993318 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:33:30.032788 - -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] Log closed at 2024-10-21 16:33:30.473063 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:33:46.082515 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:34:03.330917 - -[71] Log opened at 2024-10-21 16:34:26.517460 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:34:28.318248 - -[71] Log opened at 2024-10-21 16:34:28.566791 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-21 16:34:28.622983 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:34:29.228122 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:34:29.776075 - -[79] Log opened at 2024-10-21 16:34:29.845657 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-21 16:34:29.966943 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 16:34:29.969206 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:34:30.943434 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:34:31.558918 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:34:31.902692 - -[78] Log opened at 2024-10-21 16:34:32.004548 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:34:33.836918 - -[79] Log opened at 2024-10-21 16:34:33.876715 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:34:33.877490 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] Log opened at 2024-10-21 16:34:33.943782 -[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 16:34:33.971126 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:34:35.052831 - -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[70] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[70] Log closed at 2024-10-21 16:34:49.912752 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:35:05.845637 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:35:06.297998 - -[73] Log opened at 2024-10-21 16:35:20.743547 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:35:22.474724 - -[73] Log opened at 2024-10-21 16:35:22.789819 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] Log opened at 2024-10-21 16:35:22.871289 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:35:23.451930 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-21 16:35:24.097873 - -[60] Log opened at 2024-10-21 16:35:24.161166 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:35:24.305704 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:35:24.311154 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:35:25.320677 - -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:35:25.644755 - -[80] Log opened at 2024-10-21 16:35:25.705326 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:35:26.499981 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-21 16:35:27.350843 - -[60] Log opened at 2024-10-21 16:35:27.401496 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] Log opened at 2024-10-21 16:35:27.403249 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:35:27.462357 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:35:28.600725 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-21 16:35:29.047086 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:35:44.326941 - -[76] Log opened at 2024-10-21 16:36:12.575410 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:36:26.487782 - -[65] Log opened at 2024-10-21 16:36:42.697374 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:36:44.466043 - -[65] Log opened at 2024-10-21 16:36:44.715123 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] Log opened at 2024-10-21 16:36:44.779433 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:36:45.376014 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-21 16:36:46.033634 - -[60] Log opened at 2024-10-21 16:36:46.108582 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:36:46.241976 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:36:46.247018 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:36:47.271395 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:36:47.877618 - -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:36:48.255297 - -[81] Log opened at 2024-10-21 16:36:48.302627 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-21 16:36:49.880408 - -[60] Log opened at 2024-10-21 16:36:49.918304 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] Log opened at 2024-10-21 16:36:49.918672 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:36:49.992049 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:36:50.017576 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-21 16:36:51.058747 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-21 16:36:51.467073 - -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:37:07.620995 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:37:23.472029 - -[76] Log opened at 2024-10-21 16:38:28.070793 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:38:29.844775 - -[76] Log opened at 2024-10-21 16:38:30.071887 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-21 16:38:30.138779 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:38:30.737311 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:38:31.356916 - -[78] Log opened at 2024-10-21 16:38:31.419712 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] Log opened at 2024-10-21 16:38:31.534009 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:38:31.538224 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-21 16:38:32.551197 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:38:33.158202 - -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:38:33.514668 - -[79] Log opened at 2024-10-21 16:38:33.571859 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:38:35.143472 - -[78] Log opened at 2024-10-21 16:38:35.196832 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-21 16:38:35.197066 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] Log opened at 2024-10-21 16:38:35.250302 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:38:35.280035 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:38:36.340387 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:38:36.748456 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-21 16:38:56.800567 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:39:12.164247 - -[74] Log opened at 2024-10-21 16:40:04.825440 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:40:06.504258 - -[74] Log opened at 2024-10-21 16:40:06.738179 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-21 16:40:06.797544 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:40:07.395633 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-21 16:40:08.001610 - -[83] Log opened at 2024-10-21 16:40:08.067541 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log opened at 2024-10-21 16:40:08.303027 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 16:40:08.305926 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:40:09.277365 - -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:40:09.938908 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:40:10.277928 - -[82] Log opened at 2024-10-21 16:40:10.328651 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-21 16:40:11.945362 - -[83] Log opened at 2024-10-21 16:40:11.982641 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-21 16:40:11.983159 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:40:12.048442 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 16:40:12.076164 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:40:13.143355 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-21 16:40:13.598862 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:40:29.939726 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:40:45.585802 - -[71] Log opened at 2024-10-21 16:41:14.741195 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:41:16.547162 - -[71] Log opened at 2024-10-21 16:41:16.807829 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] Log opened at 2024-10-21 16:41:16.880369 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:41:17.463865 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-21 16:41:18.155128 - -[73] Log opened at 2024-10-21 16:41:18.220904 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-21 16:41:18.377950 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-21 16:41:18.397478 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:41:19.419573 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:41:20.029005 - -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:41:20.380420 - -[84] Log opened at 2024-10-21 16:41:20.436193 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-21 16:41:21.948112 - -[73] Log opened at 2024-10-21 16:41:21.994153 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] Log opened at 2024-10-21 16:41:21.994152 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-21 16:41:22.062370 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-21 16:41:22.092711 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:41:23.096539 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-21 16:41:23.535505 - -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:41:38.561640 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:41:52.283195 - -[76] Log opened at 2024-10-21 16:43:35.557599 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:43:37.378413 - -[76] Log opened at 2024-10-21 16:43:37.662137 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-21 16:43:37.751428 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:43:38.327389 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:43:39.004841 - -[74] Log opened at 2024-10-21 16:43:39.062278 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log opened at 2024-10-21 16:43:39.270481 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:43:39.290563 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:43:40.290158 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:43:40.932535 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:43:41.438205 - -[73] Log opened at 2024-10-21 16:43:41.503342 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:43:43.147340 - -[74] Log opened at 2024-10-21 16:43:43.180688 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:43:43.181042 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:43:43.233947 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:43:43.263656 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:43:44.399147 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:43:44.857499 - -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:43:59.653704 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:44:16.259390 - -[83] Log opened at 2024-10-21 16:45:08.386225 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:45:10.093845 - -[83] Log opened at 2024-10-21 16:45:10.296196 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-21 16:45:10.309485 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:45:10.963646 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:45:11.515948 - -[79] Log opened at 2024-10-21 16:45:11.595047 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:45:11.749200 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] Log opened at 2024-10-21 16:45:11.780953 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:45:12.829015 - -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-21 16:45:13.186129 - -[78] Log opened at 2024-10-21 16:45:13.243495 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:45:13.866975 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:45:14.847390 - -[78] Log opened at 2024-10-21 16:45:14.888854 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-21 16:45:14.889817 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] Log opened at 2024-10-21 16:45:14.956570 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 16:45:14.975245 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:45:16.101915 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-21 16:45:16.521635 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-21 16:45:31.586398 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:45:46.106178 - -[73] Log opened at 2024-10-21 16:47:33.129858 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:47:34.982806 - -[73] Log opened at 2024-10-21 16:47:35.186680 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:47:35.259000 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:47:35.845918 - -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:47:37.767318 - -[65] Log opened at 2024-10-21 16:47:37.831439 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-21 16:47:38.015891 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log opened at 2024-10-21 16:47:38.034406 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:47:38.980110 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:47:40.125275 - -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:47:40.465699 - -[85] Log opened at 2024-10-21 16:47:40.521574 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:47:42.136953 - -[85] Log opened at 2024-10-21 16:47:42.169471 -[65] Log opened at 2024-10-21 16:47:42.169468 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-21 16:47:42.234533 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:47:42.260169 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:47:43.326048 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:47:43.737973 - -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:47:59.277851 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:48:13.809501 - -[76] Log opened at 2024-10-21 16:49:20.587093 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:49:22.326705 - -[76] Log opened at 2024-10-21 16:49:22.514009 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] Log opened at 2024-10-21 16:49:22.608048 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:49:23.180482 - -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:49:23.790567 - -[87] Log opened at 2024-10-21 16:49:23.862602 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] Log opened at 2024-10-21 16:49:24.021573 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:49:24.028733 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:49:25.066725 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 16:49:25.684499 - -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:49:26.038659 - -[73] Log opened at 2024-10-21 16:49:26.088700 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:49:27.836787 - -[85] Log opened at 2024-10-21 16:49:33.077134 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-21 16:49:33.084037 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:49:33.106368 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] Log opened at 2024-10-21 16:49:33.144945 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:49:34.299561 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:49:34.762792 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:49:49.756803 - -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-21 16:50:03.022969 - -[87] Log opened at 2024-10-21 16:52:03.379028 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 16:52:05.090046 - -[87] Log opened at 2024-10-21 16:52:05.373903 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-21 16:52:05.456377 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 16:52:06.031695 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:52:06.689373 - -[74] Log opened at 2024-10-21 16:52:06.752823 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-21 16:52:06.895811 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:52:06.909531 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:52:07.880760 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:52:08.478731 - -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:52:08.820054 - -[85] Log opened at 2024-10-21 16:52:08.870183 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:52:10.430915 - -[74] Log opened at 2024-10-21 16:52:10.466446 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-21 16:52:10.467440 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-21 16:52:10.524604 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 16:52:10.560074 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:52:11.597393 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:52:12.013363 - -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-21 16:52:28.760098 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:52:45.369931 - -[76] Log opened at 2024-10-21 16:52:51.474608 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:53:08.684669 - -[71] Log opened at 2024-10-21 16:53:39.257667 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:53:41.084808 - -[71] Log opened at 2024-10-21 16:53:41.316650 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-21 16:53:41.392858 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:53:41.972555 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:53:42.645719 - -[89] Log opened at 2024-10-21 16:53:42.704560 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:53:42.862074 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 16:53:42.863126 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:53:43.912978 - -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 16:53:44.482748 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 16:53:44.818633 - -[78] Log opened at 2024-10-21 16:53:44.867453 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:53:46.581848 - -[89] Log opened at 2024-10-21 16:53:46.635059 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:53:46.635411 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:53:46.729522 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 16:53:47.820165 - -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:53:48.215977 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:54:03.369462 - -[73] Log opened at 2024-10-21 16:54:12.523704 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 16:54:12.641196 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 16:54:29.780394 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:54:46.494708 - -[65] Log opened at 2024-10-21 16:54:58.857854 -[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[65] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[65] Log closed at 2024-10-21 16:55:14.921904 - -[90] Log opened at 2024-10-21 16:55:51.830659 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-21 16:56:08.167727 - -[71] Log opened at 2024-10-21 16:56:16.237187 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 16:56:32.708453 - -[85] Log opened at 2024-10-21 16:57:19.843754 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 16:57:39.256903 - -[87] Log opened at 2024-10-21 16:58:14.887162 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 16:58:16.623212 - -[89] Log opened at 2024-10-21 16:58:16.835901 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 16:58:16.837811 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 16:58:17.501473 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 16:58:18.023462 - -[74] Log opened at 2024-10-21 16:58:18.078558 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 16:58:18.217871 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 16:58:18.233727 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:58:19.307279 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:58:20.124474 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 16:58:20.458136 - -[78] Log opened at 2024-10-21 16:58:20.515184 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:58:22.121532 - -[78] Log opened at 2024-10-21 16:58:22.232502 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 16:58:22.265161 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 16:58:39.892204 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 16:58:54.882815 - -[90] Log opened at 2024-10-21 16:59:17.912575 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-21 16:59:32.877517 - -[71] Log opened at 2024-10-21 17:01:01.118476 -[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[71] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[71] Log closed at 2024-10-21 17:01:18.987713 - -[85] Log opened at 2024-10-21 17:01:58.471728 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 17:01:59.615701 - -[91] Log opened at 2024-10-21 17:02:04.799526 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:02:06.047984 - -[91] Log opened at 2024-10-21 17:02:11.025998 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:02:27.964446 - -[89] Log opened at 2024-10-21 17:03:34.675545 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 17:03:36.393512 - -[89] Log opened at 2024-10-21 17:03:36.651752 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] Log opened at 2024-10-21 17:03:36.754203 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 17:03:37.307812 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 17:03:38.027961 - -[87] Log opened at 2024-10-21 17:03:38.097392 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 17:03:38.228339 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] Log opened at 2024-10-21 17:03:38.235771 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:03:39.276470 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:03:39.902767 - -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-21 17:03:40.241560 - -[74] Log opened at 2024-10-21 17:03:40.308982 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 17:03:42.060517 - -[87] Log opened at 2024-10-21 17:03:42.111245 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:03:43.236709 - -[91] Log opened at 2024-10-21 17:06:17.325934 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:06:19.143586 - -[91] Log opened at 2024-10-21 17:06:19.422906 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 17:06:19.512761 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:06:20.078391 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 17:06:20.739637 - -[78] Log opened at 2024-10-21 17:06:20.827430 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 17:06:20.922017 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] Log opened at 2024-10-21 17:06:20.943217 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:06:21.911739 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 17:06:22.560340 - -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 17:06:22.909658 - -[73] Log opened at 2024-10-21 17:06:22.958130 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 17:06:24.430078 - -[78] Log opened at 2024-10-21 17:06:24.463269 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] Log opened at 2024-10-21 17:06:24.524618 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 17:06:24.543363 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] Log opened at 2024-10-21 17:06:24.577596 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 17:06:25.600749 - -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-21 17:06:39.292391 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:06:54.687603 - -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 17:07:11.439031 - -[87] Log opened at 2024-10-21 17:07:27.989470 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:07:29.780751 - -[87] Log opened at 2024-10-21 17:07:30.007592 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] Log opened at 2024-10-21 17:07:30.069620 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:07:30.677889 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-21 17:07:31.347480 - -[78] Log opened at 2024-10-21 17:07:31.418204 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-21 17:07:31.540190 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 17:07:31.545866 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 17:07:32.644504 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 17:07:33.216035 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:07:33.561475 - -[91] Log opened at 2024-10-21 17:07:33.648725 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:07:35.728511 - -[78] Log opened at 2024-10-21 17:07:35.768834 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] Log opened at 2024-10-21 17:07:35.828828 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-21 17:07:35.849535 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 17:07:35.898327 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-21 17:07:36.902224 - -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:07:53.643609 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 17:08:08.873797 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:08:23.861168 - -[76] Log opened at 2024-10-21 17:08:40.467385 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:08:56.496894 - -[74] Log opened at 2024-10-21 17:16:01.887601 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 17:16:18.412728 - -[94] Log opened at 2024-10-21 17:18:02.716076 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 17:18:22.390839 - -[87] Log opened at 2024-10-21 17:18:59.788891 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 13 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- stack_get -i 14 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 17 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- context_names -i 19 -d 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 21 -n "$data_cabecera" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 22 -n "$data_cabecera" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 26 -n "$papel_formato_id" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 29 -n "$resumen_totales" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 30 -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 17:19:25.146867 - -[93] Log opened at 2024-10-21 17:19:40.885560 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[93] [Step Debug] -> - -[93] [Step Debug] <- run -i 14 -[93] [Step Debug] -> - -[93] [Step Debug] -> - -[93] [Step Debug] -> - -[93] [Step Debug] -> - -[93] [Step Debug] <- stack_get -i 15 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- context_names -i 20 -d 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 22 -n "$reqData" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 23 -n "$reqData[\"cubierta\"]" -p 0 -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- run -i 24 -[91] Log opened at 2024-10-21 17:20:30.138922 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 14 -[91] [Step Debug] -> - -[91] [Step Debug] -> - -[91] [Step Debug] -> - -[93] [Step Debug] -> - -[93] [Step Debug] <- stack_get -i 25 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 26 -n "$datos_entrada" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 28 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 29 -n "$datos_papel" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- context_names -i 30 -d 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 32 -n "$datos_presupuesto" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 33 -n "$datos_presupuesto[\"servicios\"]" -p 0 -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 34 -n "$datos_presupuesto" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- step_over -i 35 -[93] [Step Debug] -> - -[93] [Step Debug] <- stack_get -i 36 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 37 -n "$datos_entrada" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 39 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 40 -n "$datos_papel" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- context_names -i 41 -d 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- context_get -i 42 -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- property_get -i 43 -n "$datosCabecera" -d 0 -c 0 -[93] [Step Debug] -> - -[93] [Step Debug] <- run -i 44 -[93] [Step Debug] -> - -[93] Log closed at 2024-10-21 17:42:59.360459 - -[91] [Step Debug] -> - -[91] Log closed at 2024-10-21 17:43:00.362114 - -[91] Log opened at 2024-10-21 17:43:00.641070 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 14 -[85] Log opened at 2024-10-21 17:43:00.862309 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[85] [Step Debug] -> - -[91] [Step Debug] -> - -[91] Log closed at 2024-10-21 17:43:00.978184 - -[85] [Step Debug] <- run -i 14 -[85] [Step Debug] -> - -[85] Log closed at 2024-10-21 17:43:01.916899 - -[89] Log opened at 2024-10-21 17:43:01.971461 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[89] [Step Debug] -> - -[92] Log opened at 2024-10-21 17:43:01.991680 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[89] [Step Debug] -> - -[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[89] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[92] [Step Debug] -> - -[76] Log opened at 2024-10-21 17:43:02.000922 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[92] [Step Debug] -> - -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[89] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[92] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[89] [Step Debug] -> - -[92] [Step Debug] -> - -[76] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[89] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[92] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[89] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[89] [Step Debug] -> - -[76] [Step Debug] -> - -[92] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[92] [Step Debug] -> - -[89] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[92] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[76] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[76] [Step Debug] -> - -[89] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[89] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[89] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 8 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 9 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 13 -n extended_properties -v 1 -[76] [Step Debug] -> - -[89] [Step Debug] <- run -i 14 -[92] [Step Debug] <- run -i 14 -[76] [Step Debug] <- run -i 14 -[92] [Step Debug] -> - -[92] Log closed at 2024-10-21 17:43:02.742688 - -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 17:43:02.890041 - -[92] Log opened at 2024-10-21 17:43:02.958444 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2311 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[92] [Step Debug] -> - -[92] [Step Debug] <- run -i 14 -[89] [Step Debug] -> - -[89] Log closed at 2024-10-21 17:43:03.397853 - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] <- stack_get -i 15 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- context_names -i 20 -d 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_remove -i 22 -d 920012 -[92] [Step Debug] -> - -[92] [Step Debug] <- run -i 23 -[92] [Step Debug] -> - -[92] Log closed at 2024-10-21 17:43:15.186449 - -[92] Log opened at 2024-10-21 17:43:18.309491 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[92] [Step Debug] -> - -[92] [Step Debug] <- run -i 13 -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[94] Log opened at 2024-10-21 17:43:20.331528 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[94] [Step Debug] <- run -i 13 -[87] Log opened at 2024-10-21 17:43:20.628275 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 13 -[92] [Step Debug] -> - -[92] Log closed at 2024-10-21 17:43:32.538749 - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 17:43:46.991282 - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 17:44:02.349016 - -[93] Log opened at 2024-10-21 17:45:54.744234 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[93] [Step Debug] -> - -[93] [Step Debug] <- run -i 13 -[93] [Step Debug] -> - -[93] [Step Debug] -> - -[93] [Step Debug] -> - -[93] Log closed at 2024-10-21 17:46:10.296667 - -[95] Log opened at 2024-10-21 17:46:28.276934 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[95] [Step Debug] -> - -[95] [Step Debug] <- run -i 13 -[95] [Step Debug] -> - -[95] Log closed at 2024-10-21 17:46:29.029207 - -[91] Log opened at 2024-10-21 17:46:34.453191 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 13 -[91] [Step Debug] -> - -[91] Log closed at 2024-10-21 17:46:35.208962 - -[91] Log opened at 2024-10-21 17:46:39.636444 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 13 -[91] [Step Debug] -> - -[91] [Step Debug] -> - -[91] [Step Debug] -> - -[91] [Step Debug] <- stack_get -i 14 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 17 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_names -i 19 -d 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 21 -n "$reqData" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 22 -n "$interior" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- step_over -i 23 -[91] [Step Debug] -> - -[91] [Step Debug] <- stack_get -i 24 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 25 -n "$datos_entrada" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 27 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_names -i 29 -d 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 31 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[91] [Step Debug] -> - -[91] [Step Debug] -> - -[91] [Step Debug] <- stack_get -i 33 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 36 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 37 -n "$datos_papel" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_names -i 38 -d 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 40 -n "$datos_presupuesto" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 41 -n "$prototipo" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 42 -[91] [Step Debug] -> - -[91] [Step Debug] <- stack_get -i 43 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_names -i 48 -d 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 50 -n "$resumen_totales" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0 -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 52 -[91] [Step Debug] -> - -[91] Log closed at 2024-10-21 17:47:59.337999 - -[74] Log opened at 2024-10-21 17:48:41.283397 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[74] [Step Debug] -> - -[74] [Step Debug] <- run -i 14 -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] Log closed at 2024-10-21 17:48:42.854546 - -[74] Log opened at 2024-10-21 17:48:43.050252 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[74] [Step Debug] -> - -[85] Log opened at 2024-10-21 17:48:43.072716 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[74] [Step Debug] -> - -[85] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[74] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[85] [Step Debug] -> - -[74] [Step Debug] <- run -i 14 -[85] [Step Debug] <- run -i 6 -[74] [Step Debug] -> - -[74] Log closed at 2024-10-21 17:48:43.277847 - -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[85] [Step Debug] -> - -[85] Log closed at 2024-10-21 17:48:43.907190 - -[85] Log opened at 2024-10-21 17:48:43.961309 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[85] [Step Debug] -> - -[85] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[85] [Step Debug] -> - -[76] Log opened at 2024-10-21 17:48:44.075281 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[85] [Step Debug] <- run -i 14 -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 3 -[89] Log opened at 2024-10-21 17:48:44.110908 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[89] [Step Debug] -> - -[89] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[89] [Step Debug] -> - -[89] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[89] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 17:48:44.645356 - -[85] [Step Debug] -> - -[85] [Step Debug] -> - -[85] Log closed at 2024-10-21 17:48:45.046845 - -[94] Log opened at 2024-10-21 17:48:52.737341 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[89] [Step Debug] <- run -i 14 -[94] [Step Debug] <- run -i 14 -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[89] [Step Debug] -> - -[89] Log closed at 2024-10-21 17:48:53.534826 - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 17:48:54.473265 - -[94] Log opened at 2024-10-21 17:48:54.732526 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[91] Log opened at 2024-10-21 17:48:54.857452 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 6 -[94] [Step Debug] <- run -i 14 -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 17:48:55.113239 - -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[91] [Step Debug] -> - -[91] Log closed at 2024-10-21 17:48:55.825542 - -[87] Log opened at 2024-10-21 17:48:55.995222 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[95] Log opened at 2024-10-21 17:48:56.106303 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[95] [Step Debug] -> - -[95] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[95] [Step Debug] -> - -[87] [Step Debug] <- run -i 14 -[95] [Step Debug] <- run -i 6 -[93] Log opened at 2024-10-21 17:48:56.139880 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[93] [Step Debug] -> - -[93] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[93] [Step Debug] -> - -[95] [Step Debug] -> - -[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[95] [Step Debug] -> - -[95] Log closed at 2024-10-21 17:48:56.929557 - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 17:48:57.375333 - -[93] [Step Debug] <- stop -i 14 -[93] [Step Debug] -> - -[87] Log opened at 2024-10-21 17:48:59.840435 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:49:00.984262 - -[87] Log opened at 2024-10-21 17:49:01.156151 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:49:02.792580 - -[76] Log opened at 2024-10-21 17:49:36.906461 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:49:38.145979 - -[85] Log opened at 2024-10-21 17:49:49.533630 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log opened at 2024-10-21 17:49:51.566055 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log opened at 2024-10-21 17:49:53.620961 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-21 17:50:06.901463 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:50:22.883225 - -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 17:50:40.360092 - -[94] Log opened at 2024-10-21 17:51:03.886601 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 17:51:05.849784 - -[94] Log opened at 2024-10-21 17:51:06.108779 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] Log opened at 2024-10-21 17:51:06.217479 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 17:51:06.821558 - -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:51:07.605574 - -[74] Log opened at 2024-10-21 17:51:07.677643 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-21 17:51:07.790621 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 17:51:07.810493 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 17:51:08.943898 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 17:51:09.580203 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:51:09.952067 - -[74] Log opened at 2024-10-21 17:51:10.010004 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 17:51:11.659638 - -[92] Log opened at 2024-10-21 17:51:21.277343 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:51:22.600097 - -[92] Log opened at 2024-10-21 17:51:23.278249 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log opened at 2024-10-21 17:51:24.768212 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] Log opened at 2024-10-21 17:51:24.814961 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:51:41.528723 - -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-21 17:51:57.395256 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 17:52:13.991010 - -[97] Log opened at 2024-10-21 17:52:24.151921 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:52:41.377631 - -[91] Log opened at 2024-10-21 17:52:53.191938 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:52:55.191337 - -[91] Log opened at 2024-10-21 17:52:55.452826 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 17:52:55.544727 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:52:56.187229 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:52:56.952681 - -[76] Log opened at 2024-10-21 17:52:57.022036 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 17:52:57.149258 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-21 17:52:57.150317 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:52:58.240302 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:52:58.863146 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 17:52:59.272269 - -[76] Log opened at 2024-10-21 17:52:59.329570 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:53:00.980637 - -[76] Log opened at 2024-10-21 17:53:01.108029 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 17:53:01.125546 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-21 17:53:01.166733 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:53:17.792826 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:53:34.644230 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 17:53:49.363127 - -[96] Log opened at 2024-10-21 17:54:58.258670 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 17:55:00.333175 - -[96] Log opened at 2024-10-21 17:55:00.517323 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-21 17:55:00.524802 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 17:55:01.174111 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:55:01.913776 - -[97] Log opened at 2024-10-21 17:55:01.975887 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 17:55:02.086884 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] Log opened at 2024-10-21 17:55:02.110286 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 17:55:03.230563 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:55:03.856085 - -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-21 17:55:04.262319 - -[94] Log opened at 2024-10-21 17:55:04.319509 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 17:55:06.000791 - -[94] Log opened at 2024-10-21 17:55:06.135503 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-21 17:55:06.153833 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] Log opened at 2024-10-21 17:55:06.186273 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:55:23.252004 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 17:55:38.392793 - -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-21 17:55:53.999298 - -[91] Log opened at 2024-10-21 17:56:13.490680 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:56:15.509581 - -[91] Log opened at 2024-10-21 17:56:15.723635 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 17:56:15.729605 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 17:56:16.389517 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:56:17.059497 - -[87] Log opened at 2024-10-21 17:56:17.111904 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 17:56:17.243716 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 17:56:17.256732 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 17:56:18.348219 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:56:18.999620 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:56:19.384793 - -[74] Log opened at 2024-10-21 17:56:19.446453 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 17:56:21.121055 - -[74] Log opened at 2024-10-21 17:56:21.242162 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 17:56:21.260897 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 17:56:21.294715 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 17:56:39.484339 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 17:56:56.685250 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 17:57:12.413707 - -[96] Log opened at 2024-10-21 17:57:42.613557 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 17:57:44.516445 - -[96] Log opened at 2024-10-21 17:57:44.706880 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-21 17:57:44.725904 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 17:57:45.402545 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:57:46.001878 - -[96] Log opened at 2024-10-21 17:57:46.102965 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-21 17:57:46.261673 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 17:57:46.276064 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:57:47.440023 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 17:57:48.072160 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 17:57:48.421733 - -[97] Log opened at 2024-10-21 17:57:48.498366 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:57:50.120991 - -[97] Log opened at 2024-10-21 17:57:52.261989 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log opened at 2024-10-21 17:57:54.308961 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log opened at 2024-10-21 17:57:56.354277 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 17:58:10.361714 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 17:58:28.113136 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 17:58:42.917554 - -[87] Log opened at 2024-10-21 18:00:03.861730 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 15 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 18:00:05.422735 - -[87] Log opened at 2024-10-21 18:00:05.628742 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[74] Log opened at 2024-10-21 18:00:05.635634 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[87] [Step Debug] -> - -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[87] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[87] [Step Debug] -> - -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[74] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[74] [Step Debug] -> - -[87] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[87] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[74] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[87] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[74] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[74] [Step Debug] -> - -[87] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[74] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[74] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 20 -[74] [Step Debug] <- run -i 20 -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 18:00:05.872822 - -[74] [Step Debug] -> - -[74] Log closed at 2024-10-21 18:00:06.516304 - -[74] Log opened at 2024-10-21 18:00:06.630468 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[74] [Step Debug] -> - -[74] [Step Debug] <- run -i 15 -[76] Log opened at 2024-10-21 18:00:06.801277 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] Log opened at 2024-10-21 18:00:06.802891 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[91] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[91] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[91] [Step Debug] -> - -[76] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[91] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[91] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[91] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[91] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[91] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[91] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[91] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[91] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[91] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[91] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[91] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[91] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[91] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[91] [Step Debug] -> - -[91] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[91] [Step Debug] -> - -[91] [Step Debug] <- run -i 20 -[76] [Step Debug] <- run -i 20 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 18:00:07.437143 - -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] Log closed at 2024-10-21 18:00:07.862982 - -[91] [Step Debug] -> - -[91] Log closed at 2024-10-21 18:00:08.020321 - -[76] Log opened at 2024-10-21 18:00:08.078169 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 15 -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 16 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 17 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 19 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 21 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 23 -n "$id" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 24 -n "$cliente_id" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 25 -n "$id" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 26 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 27 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 32 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 34 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 35 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 36 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 38 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 40 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 41 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 42 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 43 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 44 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 45 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 46 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 47 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 48 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 49 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 50 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 51 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 52 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 53 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 54 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 55 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 56 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 57 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 58 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 59 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 60 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 61 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 62 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 63 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 64 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 65 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 66 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 67 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 68 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 69 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 70 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 72 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 73 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 74 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 75 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 76 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 77 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 78 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 80 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 81 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 82 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 83 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 84 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 85 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 86 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 87 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 88 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 89 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 90 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 91 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 92 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 93 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 94 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 95 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 96 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 97 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 98 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 99 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 100 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 101 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 102 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 103 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 104 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 105 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 106 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 107 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 108 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 109 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- step_over -i 110 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 111 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 112 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 113 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 114 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 115 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 116 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 117 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 118 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 18:00:37.650745 - -[76] Log opened at 2024-10-21 18:00:39.937051 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 15 -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 18:00:41.376266 - -[76] Log opened at 2024-10-21 18:00:41.580298 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[94] Log opened at 2024-10-21 18:00:41.586346 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[94] [Step Debug] -> - -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[94] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[76] [Step Debug] <- run -i 20 -[94] [Step Debug] <- run -i 20 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 18:00:41.805021 - -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 18:00:42.423780 - -[76] Log opened at 2024-10-21 18:00:42.590319 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[97] Log opened at 2024-10-21 18:00:42.686833 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[94] Log opened at 2024-10-21 18:00:42.686823 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[97] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[97] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[97] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[97] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[97] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[97] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[97] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[97] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[97] [Step Debug] -> - -[97] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[97] [Step Debug] -> - -[76] [Step Debug] <- run -i 15 -[94] [Step Debug] <- run -i 6 -[97] [Step Debug] <- run -i 6 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 18:00:43.229005 - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 18:00:43.637006 - -[97] [Step Debug] -> - -[97] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[97] [Step Debug] -> - -[97] Log closed at 2024-10-21 18:00:43.804267 - -[94] Log opened at 2024-10-21 18:00:43.867436 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[94] [Step Debug] <- run -i 15 -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 16 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 17 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 19 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 21 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 23 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 24 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 25 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 27 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 29 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 31 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 32 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 33 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 35 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 37 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 38 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 39 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 41 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 42 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 43 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 44 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 45 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 46 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 47 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 48 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 49 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 50 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 51 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 52 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 53 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 54 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 55 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 56 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 57 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 58 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 59 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 60 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 61 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 62 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 63 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 64 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 65 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 66 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 67 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 68 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 69 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 70 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 71 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 72 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 73 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 74 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 75 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 76 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 77 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 78 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 79 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 80 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 81 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 82 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 83 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 84 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 85 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- step_over -i 86 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 87 -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 88 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 89 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 90 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 91 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 92 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 93 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 94 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 95 -n "$direcciones" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 96 -n "$cliente_id" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 97 -n "$direcciones" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 98 -n "$i" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 99 -n "$direcciones" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 100 -n "$direcciones[0]" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 101 -n "$direcciones[0]->attributes" -p 0 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 102 -n "$direccion_id" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 103 -n "$model_direcciones" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 104 -n "$direcciones" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 105 -n "$direcciones[0]" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 106 -n "$direcciones[0]->attributes" -p 0 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 107 -n "$direcciones" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 108 -n "$direcciones[0]" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 109 -n "$direcciones[0]->attributes" -p 0 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 110 -n "$i" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 111 -n "$cliente_id" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 112 -n "$cliente_id" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- run -i 113 -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 18:04:08.527564 - -[96] Log opened at 2024-10-21 18:04:15.118155 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] -> - -[96] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[96] [Step Debug] -> - -[96] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[96] [Step Debug] -> - -[96] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[96] [Step Debug] -> - -[96] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[96] [Step Debug] -> - -[96] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[96] [Step Debug] -> - -[96] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[96] [Step Debug] -> - -[96] [Step Debug] <- run -i 15 -[96] [Step Debug] -> - -[96] [Step Debug] -> - -[96] [Step Debug] -> - -[96] [Step Debug] -> - -[87] Log opened at 2024-10-21 18:04:17.004917 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2250 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[74] Log opened at 2024-10-21 18:04:17.079098 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[74] [Step Debug] -> - -[87] [Step Debug] <- run -i 15 -[74] [Step Debug] <- run -i 6 -[96] [Step Debug] -> - -[96] [Step Debug] <- stop -i 16 -[96] [Step Debug] -> - -[96] Log closed at 2024-10-21 18:04:29.175580 - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- stop -i 16 -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 18:04:43.136939 - -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[74] [Step Debug] -> - -[74] Log closed at 2024-10-21 18:04:58.503756 - -[91] Log opened at 2024-10-21 18:06:07.362154 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 18:06:09.342884 - -[91] Log opened at 2024-10-21 18:06:09.548255 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-21 18:06:09.554100 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 18:06:10.252513 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:06:10.919606 - -[95] Log opened at 2024-10-21 18:06:10.987507 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 18:06:11.155378 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] Log opened at 2024-10-21 18:06:11.175942 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:06:12.229780 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:06:12.904206 - -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-21 18:06:13.267140 - -[92] Log opened at 2024-10-21 18:06:13.325108 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:06:15.032722 - -[92] Log opened at 2024-10-21 18:06:15.169741 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-21 18:06:15.200860 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] Log opened at 2024-10-21 18:06:15.232275 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:06:31.340013 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:06:46.318115 - -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-21 18:07:03.263107 - -[94] Log opened at 2024-10-21 18:07:48.226606 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:07:49.412912 - -[96] Log opened at 2024-10-21 18:07:55.343522 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:07:56.573808 - -[87] Log opened at 2024-10-21 18:08:01.963871 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:08:18.667252 - -[87] Log opened at 2024-10-21 18:08:20.843066 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:08:22.887571 - -[87] Log opened at 2024-10-21 18:08:23.089559 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-21 18:08:23.103099 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:08:23.755537 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 18:08:24.364370 - -[74] Log opened at 2024-10-21 18:08:24.455440 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 18:08:24.560195 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[91] Log opened at 2024-10-21 18:08:24.560194 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:08:25.654732 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-21 18:08:26.258448 - -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-21 18:08:26.657333 - -[76] Log opened at 2024-10-21 18:08:26.716832 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:08:28.275645 - -[76] Log opened at 2024-10-21 18:08:28.548348 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:08:29.659395 - -[76] Log opened at 2024-10-21 18:08:30.659149 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log opened at 2024-10-21 18:08:32.734816 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log opened at 2024-10-21 18:08:34.770282 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:08:45.905961 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:09:01.641021 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:09:17.346159 - -[98] Log opened at 2024-10-21 18:17:16.370656 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-21 18:17:18.364364 - -[98] Log opened at 2024-10-21 18:17:18.587285 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 18:17:18.589389 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log opened at 2024-10-21 18:17:18.830820 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:17:19.298911 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:17:19.827444 - -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-21 18:17:19.951113 - -[87] Log opened at 2024-10-21 18:17:20.017615 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] Log opened at 2024-10-21 18:17:20.040910 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:17:21.120472 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:17:21.737702 - -[92] Log opened at 2024-10-21 18:17:37.600661 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:17:39.506447 - -[92] Log opened at 2024-10-21 18:17:39.748915 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 18:17:39.824983 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-21 18:17:40.095674 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:17:40.429096 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 18:17:41.107788 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:17:41.210078 - -[97] Log opened at 2024-10-21 18:17:41.395616 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-21 18:17:41.414587 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:17:42.478985 - -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 18:17:43.094589 - -[87] Log opened at 2024-10-21 18:21:08.760241 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:21:10.620494 - -[87] Log opened at 2024-10-21 18:21:10.848624 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:21:11.545632 - -[92] Log opened at 2024-10-21 18:21:12.387793 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 18:21:12.521925 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[100] Log opened at 2024-10-21 18:21:12.522231 -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-21 18:21:13.611287 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:21:14.276611 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:21:14.652669 - -[92] Log opened at 2024-10-21 18:21:14.764812 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:21:16.489891 - -[92] Log opened at 2024-10-21 18:21:16.696181 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] Log opened at 2024-10-21 18:21:16.886111 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:21:17.982109 - -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-21 18:21:32.810467 - -[95] Log opened at 2024-10-21 18:21:55.000627 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:21:56.829315 - -[95] Log opened at 2024-10-21 18:21:57.020609 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:21:57.715912 - -[95] Log opened at 2024-10-21 18:21:58.204778 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-21 18:21:58.267899 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] Log opened at 2024-10-21 18:21:58.271133 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 18:21:59.389367 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:22:00.054791 - -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:22:00.415797 - -[97] Log opened at 2024-10-21 18:22:00.470749 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 18:22:02.180004 - -[97] Log opened at 2024-10-21 18:22:02.222078 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 18:22:03.373090 - -[87] Log opened at 2024-10-21 18:22:48.199613 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:22:50.071260 - -[87] Log opened at 2024-10-21 18:22:50.290332 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:22:50.964706 - -[94] Log opened at 2024-10-21 18:22:51.400916 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 18:22:51.409736 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] Log opened at 2024-10-21 18:22:51.417288 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:22:52.519884 - -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-21 18:22:52.865070 - -[92] Log opened at 2024-10-21 18:22:52.985926 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:22:53.520291 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:22:54.588967 - -[92] Log opened at 2024-10-21 18:22:55.239491 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:22:56.454124 - -[101] Log opened at 2024-10-21 18:25:12.926392 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log opened at 2024-10-21 18:25:13.969538 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:25:14.834517 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:25:15.987606 - -[76] Log opened at 2024-10-21 18:25:16.261062 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:25:16.939987 - -[76] Log opened at 2024-10-21 18:25:17.567711 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-21 18:25:17.663346 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[99] Log opened at 2024-10-21 18:25:17.663187 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:25:18.861188 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:25:19.478286 - -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-21 18:25:19.836486 - -[87] Log opened at 2024-10-21 18:25:19.892237 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:25:21.475751 - -[76] Log opened at 2024-10-21 18:25:21.519476 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:25:22.730664 - -[92] Log opened at 2024-10-21 18:26:40.230529 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:26:42.152165 - -[92] Log opened at 2024-10-21 18:26:42.459345 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:26:43.157992 - -[102] Log opened at 2024-10-21 18:26:43.642225 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] Log opened at 2024-10-21 18:26:43.772459 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[95] Log opened at 2024-10-21 18:26:43.772521 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:26:44.869020 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:26:45.510903 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-21 18:26:45.901095 - -[99] Log opened at 2024-10-21 18:26:45.958152 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:26:47.552189 - -[102] Log opened at 2024-10-21 18:26:47.606585 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:26:48.827936 - -[76] Log opened at 2024-10-21 18:27:51.504286 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:27:53.377887 - -[76] Log opened at 2024-10-21 18:27:53.654646 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:27:54.352097 - -[96] Log opened at 2024-10-21 18:27:55.093234 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 18:27:55.139163 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 18:27:55.139232 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:27:56.320755 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:27:56.944450 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:27:57.313987 - -[101] Log opened at 2024-10-21 18:27:57.378879 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:27:58.989343 - -[96] Log opened at 2024-10-21 18:27:59.029942 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:28:00.267321 - -[99] Log opened at 2024-10-21 18:30:02.745971 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:30:04.626641 - -[99] Log opened at 2024-10-21 18:30:04.841549 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:30:05.518361 - -[102] Log opened at 2024-10-21 18:30:05.884001 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log opened at 2024-10-21 18:30:06.100106 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:30:06.101125 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:30:07.264424 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:30:07.910035 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:30:08.264559 - -[104] Log opened at 2024-10-21 18:30:08.326349 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:30:09.949244 - -[104] Log opened at 2024-10-21 18:30:10.006995 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:30:11.140695 - -[76] Log opened at 2024-10-21 18:31:32.819546 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:31:34.783292 - -[76] Log opened at 2024-10-21 18:31:35.003676 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:31:35.676626 - -[92] Log opened at 2024-10-21 18:31:36.119438 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 18:31:36.182573 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] Log opened at 2024-10-21 18:31:36.224615 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:31:37.421799 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:31:38.036013 - -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:31:38.378286 - -[94] Log opened at 2024-10-21 18:31:38.478814 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:31:40.111108 - -[94] Log opened at 2024-10-21 18:31:40.163350 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:31:41.412953 - -[103] Log opened at 2024-10-21 18:33:30.363163 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:33:32.252632 - -[103] Log opened at 2024-10-21 18:33:32.470414 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:33:33.167288 - -[103] Log opened at 2024-10-21 18:33:33.626737 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log opened at 2024-10-21 18:33:33.911066 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 18:33:33.931901 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:33:34.998785 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:33:35.614215 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:33:36.027903 - -[99] Log opened at 2024-10-21 18:33:36.088361 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:33:37.678916 - -[99] Log opened at 2024-10-21 18:33:38.715316 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:33:39.900801 - -[87] Log opened at 2024-10-21 18:34:16.636059 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:34:18.430789 - -[87] Log opened at 2024-10-21 18:34:18.619643 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:34:19.311164 - -[87] Log opened at 2024-10-21 18:34:19.866618 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:34:19.897199 -[76] Log opened at 2024-10-21 18:34:19.897184 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:34:20.950544 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:34:21.277269 - -[104] Log opened at 2024-10-21 18:34:21.338442 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:34:21.936987 - -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:34:23.030876 - -[104] Log opened at 2024-10-21 18:34:23.867096 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:34:25.086392 - -[94] Log opened at 2024-10-21 18:34:55.520740 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:34:57.705185 - -[94] Log opened at 2024-10-21 18:34:57.948865 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:34:58.619314 - -[103] Log opened at 2024-10-21 18:34:59.143535 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 18:34:59.214018 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 18:34:59.214018 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:35:00.285065 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:35:00.926749 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:35:01.267550 - -[102] Log opened at 2024-10-21 18:35:01.328945 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:35:02.935970 - -[102] Log opened at 2024-10-21 18:35:02.975673 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:35:04.199049 - -[99] Log opened at 2024-10-21 18:36:11.752422 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:36:13.657864 - -[99] Log opened at 2024-10-21 18:36:13.922079 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:36:14.604346 - -[96] Log opened at 2024-10-21 18:36:15.228500 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 18:36:15.228507 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] Log opened at 2024-10-21 18:36:15.246568 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:36:16.442576 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:36:17.033756 - -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:36:17.425820 - -[92] Log opened at 2024-10-21 18:36:17.491684 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:36:19.087139 - -[92] Log opened at 2024-10-21 18:36:19.138110 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:36:20.295018 - -[76] Log opened at 2024-10-21 18:38:47.425597 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:38:49.383225 - -[76] Log opened at 2024-10-21 18:38:49.679981 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:38:50.350540 - -[76] Log opened at 2024-10-21 18:38:50.731519 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:38:50.917816 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log opened at 2024-10-21 18:38:50.959349 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:38:52.143117 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:38:52.801711 - -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:38:53.190403 - -[87] Log opened at 2024-10-21 18:38:53.248757 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:38:55.026541 - -[87] Log opened at 2024-10-21 18:38:55.115712 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:38:56.323939 - -[99] Log opened at 2024-10-21 18:39:08.450766 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:39:10.403753 - -[99] Log opened at 2024-10-21 18:39:10.624651 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:39:11.303116 - -[96] Log opened at 2024-10-21 18:39:11.773727 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] Log opened at 2024-10-21 18:39:11.881853 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 18:39:11.890641 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:39:12.965060 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-21 18:39:13.598067 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:39:13.977462 - -[101] Log opened at 2024-10-21 18:39:14.082607 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:39:15.669377 - -[101] Log opened at 2024-10-21 18:39:15.847761 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:39:17.028642 - -[76] Log opened at 2024-10-21 18:40:32.197375 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:40:34.131810 - -[76] Log opened at 2024-10-21 18:40:34.483003 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:40:35.194405 - -[104] Log opened at 2024-10-21 18:40:35.702287 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 18:40:35.815807 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 18:40:35.817379 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:40:36.959962 - -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:40:37.603018 - -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:40:37.969562 - -[104] Log opened at 2024-10-21 18:40:38.035397 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:40:39.702619 - -[104] Log opened at 2024-10-21 18:40:40.757844 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:40:41.946559 - -[92] Log opened at 2024-10-21 18:42:14.061097 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:42:16.048695 - -[92] Log opened at 2024-10-21 18:42:16.270075 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:42:16.934411 - -[101] Log opened at 2024-10-21 18:42:17.393722 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 18:42:17.534322 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-21 18:42:17.536281 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:42:18.699653 - -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-21 18:42:19.334837 - -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:42:19.748208 - -[102] Log opened at 2024-10-21 18:42:19.820212 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:42:21.559253 - -[102] Log opened at 2024-10-21 18:42:21.629443 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:42:22.865851 - -[99] Log opened at 2024-10-21 18:43:33.637908 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:43:35.862492 - -[99] Log opened at 2024-10-21 18:43:36.156268 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:43:36.847543 - -[92] Log opened at 2024-10-21 18:43:37.538285 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 18:43:37.547504 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:43:37.574413 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:43:38.693749 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:43:39.346235 - -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:43:39.743157 - -[94] Log opened at 2024-10-21 18:43:39.830258 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:43:41.502480 - -[92] Log opened at 2024-10-21 18:43:41.562032 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:43:42.790381 - -[105] Log opened at 2024-10-21 18:44:33.859180 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:44:35.908898 - -[105] Log opened at 2024-10-21 18:44:36.159882 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:44:36.833725 - -[102] Log opened at 2024-10-21 18:44:37.268277 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:44:37.384535 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] Log opened at 2024-10-21 18:44:37.390103 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:44:38.473309 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:44:39.162680 - -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-21 18:44:39.578721 - -[87] Log opened at 2024-10-21 18:44:39.651621 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:44:41.362031 - -[87] Log opened at 2024-10-21 18:44:41.417455 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:44:42.639002 - -[103] Log opened at 2024-10-21 18:45:43.374444 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:45:45.384060 - -[103] Log opened at 2024-10-21 18:45:45.675400 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:45:46.358988 - -[103] Log opened at 2024-10-21 18:45:46.947522 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 18:45:47.027211 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:45:47.027266 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:45:48.300453 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:45:48.948367 - -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:45:49.329319 - -[76] Log opened at 2024-10-21 18:45:49.429121 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:45:51.204459 - -[76] Log opened at 2024-10-21 18:45:52.027777 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:45:53.185458 - -[92] Log opened at 2024-10-21 18:46:43.334662 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:46:45.296237 - -[92] Log opened at 2024-10-21 18:46:45.517459 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:46:46.201597 - -[92] Log opened at 2024-10-21 18:46:46.783191 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 18:46:46.848598 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-21 18:46:46.863284 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:46:48.081353 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:46:48.771019 - -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:46:49.139199 - -[99] Log opened at 2024-10-21 18:46:49.251564 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:46:50.964397 - -[99] Log opened at 2024-10-21 18:46:51.722556 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:46:52.948479 - -[102] Log opened at 2024-10-21 18:47:18.195761 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:47:20.106850 - -[102] Log opened at 2024-10-21 18:47:20.343860 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:47:21.022595 - -[102] Log opened at 2024-10-21 18:47:21.394805 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] Log opened at 2024-10-21 18:47:21.531436 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:47:21.544407 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-21 18:47:22.619929 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:47:23.281042 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:47:23.631086 - -[106] Log opened at 2024-10-21 18:47:23.687091 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-21 18:47:25.357463 - -[106] Log opened at 2024-10-21 18:47:25.422851 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-21 18:47:26.642886 - -[76] Log opened at 2024-10-21 18:48:48.805980 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:48:50.741858 - -[76] Log opened at 2024-10-21 18:48:50.999751 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:48:51.674556 - -[92] Log opened at 2024-10-21 18:48:51.988733 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log opened at 2024-10-21 18:48:52.190457 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 18:48:52.208371 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:48:53.296710 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:48:53.957369 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:48:54.317404 - -[105] Log opened at 2024-10-21 18:48:54.372691 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:48:55.981254 - -[105] Log opened at 2024-10-21 18:48:56.042671 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:48:57.241776 - -[94] Log opened at 2024-10-21 18:50:40.937397 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:50:42.965823 - -[94] Log opened at 2024-10-21 18:50:43.188710 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:50:43.851772 - -[104] Log opened at 2024-10-21 18:50:44.285727 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 18:50:44.350340 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 18:50:44.366747 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:50:45.517721 - -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:50:46.187459 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:50:46.592680 - -[103] Log opened at 2024-10-21 18:50:46.645162 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:50:48.339274 - -[103] Log opened at 2024-10-21 18:50:48.397967 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:50:49.647875 - -[102] Log opened at 2024-10-21 18:51:19.210334 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:51:21.071908 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:51:21.158959 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:51:23.113124 - -[87] Log opened at 2024-10-21 18:51:23.334890 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:51:23.989207 - -[106] Log opened at 2024-10-21 18:51:24.457982 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 18:51:24.483129 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 18:51:24.483732 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:51:25.577767 - -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-21 18:51:26.265988 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:51:26.620464 - -[76] Log opened at 2024-10-21 18:51:26.704909 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:51:28.387870 - -[76] Log opened at 2024-10-21 18:51:28.441162 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:51:29.648835 - -[105] Log opened at 2024-10-21 18:51:50.730411 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:51:52.762798 - -[105] Log opened at 2024-10-21 18:51:53.036230 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:51:53.730577 - -[103] Log opened at 2024-10-21 18:51:54.212376 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:51:54.254613 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:51:54.271918 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:51:55.310231 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:51:56.007704 - -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:51:56.367504 - -[87] Log opened at 2024-10-21 18:51:56.427935 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:51:58.094542 - -[87] Log opened at 2024-10-21 18:51:58.654614 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:51:59.877931 - -[92] Log opened at 2024-10-21 18:52:51.442075 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:52:53.589613 - -[92] Log opened at 2024-10-21 18:52:53.809347 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:52:54.470015 - -[76] Log opened at 2024-10-21 18:52:54.881674 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 18:52:55.072521 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 18:52:55.073587 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:52:56.142163 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:52:56.781723 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:52:57.147690 - -[107] Log opened at 2024-10-21 18:52:57.216960 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:52:58.877766 - -[107] Log opened at 2024-10-21 18:52:58.920153 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:53:00.098525 - -[94] Log opened at 2024-10-21 18:53:38.819298 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:53:40.753947 - -[94] Log opened at 2024-10-21 18:53:40.974961 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:53:41.634237 - -[102] Log opened at 2024-10-21 18:53:41.938840 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log opened at 2024-10-21 18:53:42.179944 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 18:53:42.179943 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:53:43.319399 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:53:44.033147 - -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:53:44.390432 - -[103] Log opened at 2024-10-21 18:53:44.448104 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:53:46.186444 - -[103] Log opened at 2024-10-21 18:53:46.253132 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:53:47.427649 - -[92] Log opened at 2024-10-21 18:55:27.252016 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log opened at 2024-10-21 18:55:28.054619 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:55:29.474034 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:55:30.762609 - -[76] Log opened at 2024-10-21 18:55:30.984490 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:55:31.654267 - -[99] Log opened at 2024-10-21 18:55:32.123259 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 18:55:32.160612 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:55:32.164453 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:55:33.257120 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:55:33.876302 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:55:34.237471 - -[107] Log opened at 2024-10-21 18:55:34.310128 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:55:35.960098 - -[107] Log opened at 2024-10-21 18:55:35.999620 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:55:37.173362 - -[105] Log opened at 2024-10-21 18:55:56.431820 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:55:58.386915 - -[105] Log opened at 2024-10-21 18:55:58.589476 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:55:59.250014 - -[94] Log opened at 2024-10-21 18:55:59.606677 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 18:55:59.717825 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:55:59.721383 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:56:00.797634 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:56:01.406453 - -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:56:01.774928 - -[102] Log opened at 2024-10-21 18:56:01.893820 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:56:03.553943 - -[102] Log opened at 2024-10-21 18:56:03.598821 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:56:04.870749 - -[92] Log opened at 2024-10-21 18:56:32.240624 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:56:34.228392 - -[92] Log opened at 2024-10-21 18:56:34.455477 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:56:35.123781 - -[99] Log opened at 2024-10-21 18:56:35.425715 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log opened at 2024-10-21 18:56:35.641800 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:56:35.641853 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:56:36.781124 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:56:37.447481 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:56:37.800533 - -[76] Log opened at 2024-10-21 18:56:37.862350 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:56:39.544871 - -[76] Log opened at 2024-10-21 18:56:39.643125 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:56:40.812654 - -[103] Log opened at 2024-10-21 18:57:07.126207 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:57:09.022017 - -[103] Log opened at 2024-10-21 18:57:09.205596 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:57:09.864017 - -[94] Log opened at 2024-10-21 18:57:10.271926 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:57:10.288594 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 18:57:10.289116 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:57:11.364055 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:57:12.010806 - -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:57:12.378464 - -[104] Log opened at 2024-10-21 18:57:12.430648 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:57:14.126037 - -[104] Log opened at 2024-10-21 18:57:14.180922 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:57:15.400883 - -[105] Log opened at 2024-10-21 18:57:34.077156 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:57:36.063720 - -[99] Log opened at 2024-10-21 18:57:36.295096 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:57:36.961293 - -[99] Log opened at 2024-10-21 18:57:37.490102 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 18:57:37.535732 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 18:57:37.554119 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:57:38.639817 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:57:39.292170 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:57:39.654979 - -[87] Log opened at 2024-10-21 18:57:39.735725 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:57:41.599264 - -[87] Log opened at 2024-10-21 18:57:41.637352 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:57:42.868504 - -[92] Log opened at 2024-10-21 18:58:02.520644 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:58:04.546793 - -[92] Log opened at 2024-10-21 18:58:04.705461 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:58:05.375018 - -[107] Log opened at 2024-10-21 18:58:05.871045 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 18:58:05.907838 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 18:58:05.912950 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:58:07.008909 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:58:07.351670 - -[103] Log opened at 2024-10-21 18:58:07.412615 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:58:08.064171 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:58:09.047975 - -[103] Log opened at 2024-10-21 18:58:09.097880 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:58:10.263780 - -[94] Log opened at 2024-10-21 18:58:16.487026 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:58:18.481748 - -[94] Log opened at 2024-10-21 18:58:18.678481 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:58:19.330744 - -[102] Log opened at 2024-10-21 18:58:19.722089 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 18:58:19.838272 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-21 18:58:19.840465 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:58:20.922338 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:58:21.609581 - -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:58:21.965591 - -[104] Log opened at 2024-10-21 18:58:22.018214 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:58:23.635445 - -[104] Log opened at 2024-10-21 18:58:23.689981 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:58:24.895776 - -[87] Log opened at 2024-10-21 18:58:30.852865 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:58:32.818276 - -[87] Log opened at 2024-10-21 18:58:33.025250 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:58:33.681276 - -[92] Log opened at 2024-10-21 18:58:33.969967 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log opened at 2024-10-21 18:58:34.258131 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 18:58:34.258132 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:58:35.358325 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 18:58:35.981477 - -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 18:58:36.336862 - -[103] Log opened at 2024-10-21 18:58:36.387999 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:58:38.164792 - -[103] Log opened at 2024-10-21 18:58:38.211930 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 18:58:39.402762 - -[99] Log opened at 2024-10-21 18:59:22.729205 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:59:24.672127 - -[99] Log opened at 2024-10-21 18:59:24.890517 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:59:25.582578 - -[102] Log opened at 2024-10-21 18:59:25.980208 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-21 18:59:26.029608 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 18:59:26.038987 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:59:27.119092 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 18:59:27.755978 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 18:59:28.137973 - -[105] Log opened at 2024-10-21 18:59:28.201041 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:59:29.893394 - -[105] Log opened at 2024-10-21 18:59:29.933120 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 18:59:31.119109 - -[104] Log opened at 2024-10-21 18:59:50.176849 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:59:52.178997 - -[104] Log opened at 2024-10-21 18:59:52.418689 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 18:59:53.092483 - -[87] Log opened at 2024-10-21 18:59:53.477598 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log opened at 2024-10-21 18:59:53.693877 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[76] Log opened at 2024-10-21 18:59:53.693989 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:59:54.755806 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 18:59:55.421003 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 18:59:55.837488 - -[94] Log opened at 2024-10-21 18:59:55.903963 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:59:57.599821 - -[94] Log opened at 2024-10-21 18:59:57.635004 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 18:59:58.887710 - -[107] Log opened at 2024-10-21 19:00:17.164444 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:00:19.092384 - -[107] Log opened at 2024-10-21 19:00:19.266907 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:00:19.925917 - -[103] Log opened at 2024-10-21 19:00:20.281693 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 19:00:20.426752 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 19:00:20.429945 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:00:21.486227 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:00:22.118438 - -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:00:22.478473 - -[102] Log opened at 2024-10-21 19:00:22.549315 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:00:24.200667 - -[102] Log opened at 2024-10-21 19:00:24.250524 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:00:25.441767 - -[99] Log opened at 2024-10-21 19:00:39.172911 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:00:41.180123 - -[99] Log opened at 2024-10-21 19:00:41.345543 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:00:42.033046 - -[105] Log opened at 2024-10-21 19:00:42.372312 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-21 19:00:42.473253 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 19:00:42.473416 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 19:00:43.581278 - -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log closed at 2024-10-21 19:00:44.331362 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:00:44.733442 - -[104] Log opened at 2024-10-21 19:00:44.792325 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 19:00:46.445388 - -[104] Log opened at 2024-10-21 19:00:47.553718 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 19:00:48.761991 - -[94] Log opened at 2024-10-21 19:03:42.859658 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:03:44.820298 - -[94] Log opened at 2024-10-21 19:03:45.015997 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:03:45.698573 - -[103] Log opened at 2024-10-21 19:03:46.026739 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 19:03:46.216348 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 19:03:46.220393 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:03:47.297338 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:03:47.916374 - -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:03:48.283131 - -[107] Log opened at 2024-10-21 19:03:48.360954 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:03:50.096072 - -[107] Log opened at 2024-10-21 19:03:50.140662 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:03:51.391454 - -[99] Log opened at 2024-10-21 19:05:13.807910 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:05:15.673008 - -[99] Log opened at 2024-10-21 19:05:15.871706 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:05:16.558582 - -[99] Log opened at 2024-10-21 19:05:17.305894 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-21 19:05:17.503098 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log opened at 2024-10-21 19:05:17.508899 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:05:18.746008 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:05:19.394170 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:05:19.774489 - -[104] Log opened at 2024-10-21 19:05:39.821290 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 19:05:41.467451 - -[104] Log opened at 2024-10-21 19:05:41.797364 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 19:05:42.976102 - -[94] Log opened at 2024-10-21 19:05:53.896624 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:05:55.960551 - -[94] Log opened at 2024-10-21 19:05:56.212263 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:05:56.904218 - -[94] Log opened at 2024-10-21 19:05:57.598736 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 19:05:57.766474 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 19:05:57.766606 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:05:58.969903 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:05:59.596432 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:05:59.959622 - -[87] Log opened at 2024-10-21 19:06:00.077318 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:06:01.717544 - -[87] Log opened at 2024-10-21 19:06:02.911445 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:06:04.121315 - -[107] Log opened at 2024-10-21 19:08:14.198898 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:08:16.099513 - -[107] Log opened at 2024-10-21 19:08:16.296177 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:08:16.955745 - -[105] Log opened at 2024-10-21 19:08:17.308001 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 19:08:17.489242 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 19:08:17.489258 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:08:18.647245 - -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:08:19.341119 - -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:08:19.698959 - -[99] Log opened at 2024-10-21 19:08:19.758468 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:08:21.531540 - -[99] Log opened at 2024-10-21 19:08:21.573205 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:08:22.766116 - -[92] Log opened at 2024-10-21 19:09:00.453007 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:09:02.545745 - -[92] Log opened at 2024-10-21 19:09:02.718084 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:09:03.376798 - -[104] Log opened at 2024-10-21 19:09:03.741644 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 19:09:03.831085 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 19:09:03.832177 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:09:05.012841 - -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-21 19:09:05.658508 - -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:09:06.005873 - -[102] Log opened at 2024-10-21 19:09:06.068321 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:09:07.789507 - -[102] Log opened at 2024-10-21 19:09:07.831197 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:09:09.031284 - -[76] Log opened at 2024-10-21 19:09:27.874851 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:09:29.823747 - -[76] Log opened at 2024-10-21 19:09:30.049743 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:09:30.762856 - -[87] Log opened at 2024-10-21 19:09:31.291698 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 19:09:31.330442 -[107] Log opened at 2024-10-21 19:09:31.330441 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:09:32.431311 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:09:33.060056 - -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:09:33.437489 - -[92] Log opened at 2024-10-21 19:09:33.502063 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:09:35.188204 - -[87] Log opened at 2024-10-21 19:09:35.231189 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:09:36.398626 - -[103] Log opened at 2024-10-21 19:09:52.648662 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:09:54.546918 - -[103] Log opened at 2024-10-21 19:09:54.771811 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:09:55.439605 - -[102] Log opened at 2024-10-21 19:09:55.792978 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 19:09:55.978419 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-21 19:09:55.986393 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:09:57.073908 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:09:57.684367 - -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:09:58.075193 - -[94] Log opened at 2024-10-21 19:09:58.130410 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:09:59.837832 - -[94] Log opened at 2024-10-21 19:09:59.873989 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:10:01.033732 - -[105] Log opened at 2024-10-21 19:11:51.254800 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:11:53.189747 - -[105] Log opened at 2024-10-21 19:11:53.424144 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:11:54.075303 - -[99] Log opened at 2024-10-21 19:11:54.464426 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 19:11:54.657314 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 19:11:54.657314 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:11:55.754333 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:11:56.406570 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:11:56.768793 - -[107] Log opened at 2024-10-21 19:11:56.840479 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:11:58.560402 - -[107] Log opened at 2024-10-21 19:11:58.611493 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:11:59.860240 - -[103] Log opened at 2024-10-21 19:14:10.607834 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:14:13.279330 - -[103] Log opened at 2024-10-21 19:14:13.620264 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:14:14.332229 - -[102] Log opened at 2024-10-21 19:14:14.743833 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log opened at 2024-10-21 19:14:15.079340 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-21 19:14:15.082747 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:14:16.206473 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:14:16.883152 - -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:14:17.261079 - -[102] Log opened at 2024-10-21 19:14:17.314605 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:14:18.931490 - -[102] Log opened at 2024-10-21 19:14:18.982752 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:14:20.146740 - -[94] Log opened at 2024-10-21 19:15:34.798346 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:15:36.658238 - -[94] Log opened at 2024-10-21 19:15:36.886565 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:15:37.561154 - -[94] Log opened at 2024-10-21 19:15:38.251985 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 19:15:38.438447 -[105] Log opened at 2024-10-21 19:15:38.438447 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:15:39.514534 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:15:40.155405 - -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:15:40.548065 - -[76] Log opened at 2024-10-21 19:15:40.676129 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:15:42.384146 - -[76] Log opened at 2024-10-21 19:15:42.465571 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:15:43.639462 - -[92] Log opened at 2024-10-21 19:22:15.956515 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:22:17.847089 - -[92] Log opened at 2024-10-21 19:22:18.116584 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:22:18.801252 - -[92] Log opened at 2024-10-21 19:22:19.919123 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log opened at 2024-10-21 19:22:20.128524 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 19:22:20.134452 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:22:21.303219 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:22:21.939364 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:22:22.289006 - -[107] Log opened at 2024-10-21 19:22:22.408386 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:22:24.059536 - -[107] Log opened at 2024-10-21 19:22:24.131090 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:22:25.320783 - -[102] Log opened at 2024-10-21 19:24:19.093231 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:24:20.928294 - -[102] Log opened at 2024-10-21 19:24:21.223831 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:24:21.900044 - -[102] Log opened at 2024-10-21 19:24:22.535089 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log opened at 2024-10-21 19:24:22.745071 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 19:24:22.746325 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:24:23.907752 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:24:24.548069 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:24:24.907076 - -[99] Log opened at 2024-10-21 19:24:25.043749 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:24:26.730777 - -[108] Log opened at 2024-10-21 19:27:04.423674 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:27:05.678975 - -[108] Log opened at 2024-10-21 19:27:06.893591 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:27:08.820724 - -[108] Log opened at 2024-10-21 19:27:09.027322 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:27:09.691799 - -[108] Log opened at 2024-10-21 19:27:10.107059 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 19:27:10.284817 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 19:27:10.286960 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:27:11.368192 - -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:27:11.981605 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:27:12.327815 - -[92] Log opened at 2024-10-21 19:27:12.397851 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:27:13.959199 - -[92] Log opened at 2024-10-21 19:27:13.999739 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:27:15.212471 - -[105] Log opened at 2024-10-21 19:28:10.055913 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:28:12.081597 - -[105] Log opened at 2024-10-21 19:28:12.346849 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:28:13.018734 - -[105] Log opened at 2024-10-21 19:28:13.377293 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 19:28:13.563281 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log opened at 2024-10-21 19:28:13.588743 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:28:14.663346 - -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-21 19:28:15.252004 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:28:15.598099 - -[103] Log opened at 2024-10-21 19:28:15.670925 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:28:17.358652 - -[103] Log opened at 2024-10-21 19:28:17.399279 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:28:18.609218 - -[94] Log opened at 2024-10-21 19:28:30.299477 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:28:32.269530 - -[94] Log opened at 2024-10-21 19:28:32.520365 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:28:33.202365 - -[99] Log opened at 2024-10-21 19:28:33.790040 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 19:28:33.883869 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-21 19:28:33.885041 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:28:35.188027 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:28:35.816123 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:28:36.212021 - -[107] Log opened at 2024-10-21 19:28:36.266530 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:28:37.955740 - -[99] Log opened at 2024-10-21 19:28:38.015680 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:28:39.176913 - -[76] Log opened at 2024-10-21 19:29:07.117834 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:29:09.208893 - -[76] Log opened at 2024-10-21 19:29:09.440161 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:29:10.096753 - -[76] Log opened at 2024-10-21 19:29:10.457885 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 19:29:10.642901 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 19:29:10.643009 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:29:11.740808 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:29:12.317162 - -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:29:12.674783 - -[103] Log opened at 2024-10-21 19:29:12.742091 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:29:14.426565 - -[103] Log opened at 2024-10-21 19:29:14.482693 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:29:15.665177 - -[87] Log opened at 2024-10-21 19:32:26.698612 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:32:28.646653 - -[87] Log opened at 2024-10-21 19:32:28.876299 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:32:29.538577 - -[92] Log opened at 2024-10-21 19:32:29.936516 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 19:32:30.119641 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 19:32:30.119793 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:32:31.265547 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:32:31.861897 - -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:32:32.233400 - -[107] Log opened at 2024-10-21 19:32:32.290409 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:32:34.021977 - -[107] Log opened at 2024-10-21 19:32:34.058537 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:32:35.191476 - -[109] Log opened at 2024-10-21 19:34:35.768477 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:34:37.618275 - -[109] Log opened at 2024-10-21 19:34:37.851127 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:34:38.542581 - -[76] Log opened at 2024-10-21 19:34:38.898805 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log opened at 2024-10-21 19:34:39.110375 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] Log opened at 2024-10-21 19:34:39.125659 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:34:40.195616 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:34:40.806451 - -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:34:41.149540 - -[102] Log opened at 2024-10-21 19:34:41.205755 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:34:42.858046 - -[102] Log opened at 2024-10-21 19:34:42.897744 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 19:34:44.102636 - -[103] Log opened at 2024-10-21 19:36:33.284166 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:36:35.216171 - -[103] Log opened at 2024-10-21 19:36:35.436080 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:36:36.104982 - -[108] Log opened at 2024-10-21 19:36:36.477476 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log opened at 2024-10-21 19:36:36.686133 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 19:36:36.691014 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:36:37.741733 - -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:36:38.365496 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:36:38.712160 - -[94] Log opened at 2024-10-21 19:36:38.784059 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:36:40.488190 - -[94] Log opened at 2024-10-21 19:36:40.537896 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:36:41.777593 - -[107] Log opened at 2024-10-21 19:39:16.203271 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:39:18.118168 - -[107] Log opened at 2024-10-21 19:39:18.312557 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:39:19.023669 - -[107] Log opened at 2024-10-21 19:39:19.683586 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log opened at 2024-10-21 19:39:19.885275 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 19:39:19.885258 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:39:21.087837 - -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:39:21.750499 - -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:39:22.105899 - -[76] Log opened at 2024-10-21 19:39:22.236448 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:39:23.878208 - -[76] Log opened at 2024-10-21 19:39:24.947745 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:39:26.131729 - -[99] Log opened at 2024-10-21 19:55:05.437029 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:55:07.440262 - -[99] Log opened at 2024-10-21 19:55:07.668649 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:55:08.349945 - -[108] Log opened at 2024-10-21 19:55:08.858355 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log opened at 2024-10-21 19:55:09.059971 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 19:55:09.060780 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:55:10.181715 - -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:55:10.828662 - -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:55:11.214409 - -[92] Log opened at 2024-10-21 19:55:11.279243 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:55:12.931817 - -[92] Log opened at 2024-10-21 19:55:12.971306 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-21 19:55:13.058046 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 19:55:13.098199 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 19:55:13.141405 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 19:55:14.299956 - -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 19:55:30.313290 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 19:55:47.913370 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 19:56:03.901997 - -[103] Log opened at 2024-10-21 19:56:11.007714 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:56:12.986324 - -[103] Log opened at 2024-10-21 19:56:13.218294 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:56:13.885788 - -[107] Log opened at 2024-10-21 19:56:14.254498 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 19:56:14.435718 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] Log opened at 2024-10-21 19:56:14.435719 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:56:15.576523 - -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 19:56:16.227401 - -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 19:56:16.580003 - -[109] Log opened at 2024-10-21 19:56:16.636983 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:56:18.251625 - -[109] Log opened at 2024-10-21 19:56:18.719862 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:56:19.967358 - -[109] Log opened at 2024-10-21 19:56:20.857359 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log opened at 2024-10-21 19:56:22.999754 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log opened at 2024-10-21 19:56:26.085129 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-21 19:56:37.947563 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 19:56:52.763990 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 19:57:09.539479 - -[92] Log opened at 2024-10-21 20:02:32.214482 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 20:02:34.198018 - -[92] Log opened at 2024-10-21 20:02:34.523306 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 20:02:35.203753 - -[107] Log opened at 2024-10-21 20:02:35.746872 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-21 20:02:35.917817 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 20:02:35.935311 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 20:02:37.098441 - -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 20:02:37.750152 - -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 20:02:38.113893 - -[99] Log opened at 2024-10-21 20:02:38.169846 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 20:02:39.858942 - -[107] Log opened at 2024-10-21 20:02:39.898754 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-21 20:02:39.967861 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-21 20:02:39.987090 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 20:02:40.030228 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 20:02:41.275076 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-21 20:02:55.905890 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 20:03:12.621806 - -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 20:03:28.956800 - -[76] Log opened at 2024-10-21 20:03:39.837783 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 20:03:41.898892 - -[76] Log opened at 2024-10-21 20:03:42.141963 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 20:03:42.819255 - -[94] Log opened at 2024-10-21 20:03:43.252015 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log opened at 2024-10-21 20:03:43.537746 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 20:03:43.537924 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 20:03:44.812243 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 20:03:45.492957 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 20:03:45.854838 - -[102] Log opened at 2024-10-21 20:03:45.920619 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 20:03:47.633676 - -[102] Log opened at 2024-10-21 20:03:47.680203 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-21 20:03:47.763390 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-21 20:03:47.784448 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-21 20:03:47.839699 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 20:03:48.971079 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-21 20:04:04.382651 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-21 20:04:20.164720 - -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:04:36.670012 - -[92] Log opened at 2024-10-21 20:05:05.989272 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 20:05:11.155374 - -[87] Log opened at 2024-10-21 20:05:29.896402 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:05:35.000228 - -[107] Log opened at 2024-10-21 20:05:36.367190 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 20:05:41.342474 - -[103] Log opened at 2024-10-21 20:06:10.869252 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 20:06:15.842478 - -[102] Log opened at 2024-10-21 20:06:48.082305 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1571 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 16 -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 17 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 22 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 24 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 25 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 26 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 27 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 29 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 30 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 31 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 32 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 34 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 37 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 38 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 39 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 41 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 42 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 43 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 48 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 50 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 51 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 54 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 56 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 58 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 59 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 60 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 61 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 62 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 64 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 66 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 67 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 68 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 70 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 72 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 73 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 74 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 75 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 76 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 77 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 78 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 79 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 80 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 81 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 82 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 83 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 84 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 85 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 86 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 87 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 88 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 89 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 90 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 91 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 92 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 96 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 97 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 98 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 99 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 100 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 101 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 102 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 103 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 104 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 105 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 106 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 107 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 108 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 109 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 110 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 111 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 112 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 113 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 114 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 115 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 116 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 117 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 118 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 119 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 120 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 121 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 122 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 123 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 124 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 125 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 126 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 127 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 128 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 129 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 130 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 131 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 132 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 133 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 134 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 135 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 136 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 137 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 138 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 139 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 140 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 141 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 142 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 143 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 144 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 145 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 146 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 147 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 148 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 149 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 150 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 151 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 152 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 153 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 154 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 155 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 156 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 157 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 158 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 159 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 160 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 161 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 162 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 163 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 164 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 165 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 166 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 167 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 168 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 169 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 170 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 171 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 172 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 173 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 174 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 175 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 176 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 177 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 178 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 179 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 180 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 181 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 182 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 183 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 184 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 185 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 186 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 187 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 188 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 189 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 190 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 191 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 192 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 193 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 194 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 195 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 196 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 197 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 198 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 199 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 200 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 201 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 202 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 203 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 204 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 205 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 206 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 207 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 208 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 209 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 210 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 211 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 212 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 213 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 214 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 215 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 216 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 217 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 218 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 219 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 220 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 221 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 222 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 223 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 224 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 225 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 226 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 227 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 228 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 229 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 230 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 231 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 232 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 233 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 234 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 235 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 236 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 237 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 238 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 239 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 240 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 241 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 242 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 243 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 244 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 245 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 246 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 247 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 248 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 249 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 250 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 251 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 252 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 253 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 254 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 255 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 256 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 257 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 258 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 259 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 260 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 261 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 262 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 263 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 264 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 265 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 266 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 267 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 268 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 269 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 270 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 271 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 272 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 273 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 274 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 275 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 276 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 277 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 278 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 279 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 280 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 281 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 282 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 283 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 284 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 285 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 286 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 287 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 288 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 289 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 290 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 291 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 292 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 293 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 294 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 295 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 296 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 297 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 298 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 299 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 300 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 301 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 302 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 303 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 304 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 305 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 306 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 307 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 308 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 309 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 310 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 311 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 312 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 313 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 314 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 315 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 316 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 317 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 318 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 319 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 320 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 321 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 322 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 323 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 324 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 325 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 326 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 327 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 328 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 329 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 330 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 331 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 332 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 333 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 334 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 335 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 336 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 337 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 338 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 339 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 340 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 341 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 342 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 343 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 344 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 345 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 346 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 347 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 348 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 349 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 350 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 351 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 352 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 353 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 354 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 355 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 356 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 357 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 358 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 359 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 360 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 361 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 362 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 363 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 364 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 365 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 366 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 367 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 368 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 369 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 370 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 371 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 372 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 373 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 374 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 375 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 376 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 377 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 378 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 379 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 380 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 381 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 382 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 383 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 384 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 385 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 386 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 387 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 388 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 389 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 390 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 391 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 392 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 393 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 394 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 395 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 396 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 397 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 398 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 399 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 400 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 401 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 402 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 403 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 404 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 405 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 406 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 407 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 408 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 409 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 410 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 411 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 412 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 413 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 414 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 415 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 416 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 417 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 418 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- step_over -i 419 -[102] [Step Debug] -> - -[102] [Step Debug] <- stack_get -i 420 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 421 -n "$datos_entrada" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 422 -n "$data" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 423 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- property_get -i 424 -n "$datos_papel" -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_names -i 425 -d 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- context_get -i 426 -d 0 -c 0 -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 427 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:07:32.606137 - -[94] Log opened at 2024-10-21 20:07:44.376126 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1571 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[94] [Step Debug] <- run -i 16 -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] <- stack_get -i 17 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_names -i 22 -d 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[94] [Step Debug] -> - -[94] [Step Debug] <- run -i 24 -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 20:07:49.564896 - -[76] Log opened at 2024-10-21 20:08:53.192774 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 442 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1571 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 17 -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 18 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 23 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_remove -i 25 -d 760058 -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 26 -[76] [Step Debug] -> - -[76] [Step Debug] <- stack_get -i 27 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_names -i 32 -d 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 35 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 20:09:15.457099 - -[110] Log opened at 2024-10-21 20:10:41.042616 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 442 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 634 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 831 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2259 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 17 -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] <- stack_get -i 18 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- context_names -i 23 -d 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_remove -i 25 -d 1100002 -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 26 -[110] [Step Debug] -> - -[110] [Step Debug] <- stack_get -i 27 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- context_names -i 32 -d 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 34 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:10:53.750840 - -[92] Log opened at 2024-10-21 20:11:31.789867 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 416 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[92] [Step Debug] -> - -[92] [Step Debug] <- run -i 16 -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] Log closed at 2024-10-21 20:11:42.390638 - -[87] Log opened at 2024-10-21 20:12:02.257166 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 629 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 826 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2254 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 16 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- stack_get -i 17 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- context_names -i 22 -d 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 24 -n "$return_data[\"errors\"]" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 25 -n "$return_data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 26 -n "$this->calcular_presupuesto" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 27 -n "$this->calcular_presupuesto" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 28 -n "$return_data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 29 -d 870051 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 30 -d 870052 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 31 -d 870053 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 32 -d 870054 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 365 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 634 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 35 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 831 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2259 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 37 -d 870060 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 38 -d 870061 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 39 -d 870062 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 40 -d 870063 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 41 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 366 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 42 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 633 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 43 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 827 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 44 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2258 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 45 -d 870064 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 46 -n "$return_data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- property_get -i 47 -n "$return_data" -d 0 -c 0 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 48 -d 870065 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 49 -d 870066 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 50 -d 870067 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 51 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 52 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 834 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 53 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2265 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 54 -d 870068 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 55 -d 870069 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 56 -d 870070 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 57 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 638 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 58 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 832 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 59 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2260 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 60 -d 870071 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 61 -d 870072 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 62 -d 870073 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 63 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 64 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 65 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 66 -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 20:15:03.435860 - -[107] Log opened at 2024-10-21 20:15:10.239433 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[107] [Step Debug] -> - -[107] [Step Debug] <- run -i 15 -[107] [Step Debug] -> - -[107] Log closed at 2024-10-21 20:15:11.107527 - -[99] Log opened at 2024-10-21 20:15:11.259459 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[99] [Step Debug] -> - -[99] [Step Debug] <- run -i 15 -[99] [Step Debug] -> - -[99] Log closed at 2024-10-21 20:15:11.605560 - -[99] Log opened at 2024-10-21 20:15:11.784066 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[99] [Step Debug] -> - -[107] Log opened at 2024-10-21 20:15:11.804781 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[99] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[107] [Step Debug] -> - -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[99] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[107] [Step Debug] -> - -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[99] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[99] [Step Debug] -> - -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[99] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[107] [Step Debug] -> - -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 12 -n notify_ok -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[107] [Step Debug] -> - -[99] [Step Debug] <- run -i 15 -[107] [Step Debug] <- run -i 15 -[108] Log opened at 2024-10-21 20:15:11.987873 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 6 -[107] [Step Debug] -> - -[107] Log closed at 2024-10-21 20:15:12.614540 - -[99] [Step Debug] -> - -[99] [Step Debug] -> - -[99] Log closed at 2024-10-21 20:15:13.059087 - -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:15:13.363029 - -[102] Log opened at 2024-10-21 20:15:25.886681 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 15 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:15:26.670626 - -[94] Log opened at 2024-10-21 20:15:33.280820 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[94] [Step Debug] <- run -i 15 -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 20:15:34.179825 - -[76] Log opened at 2024-10-21 20:15:34.273051 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 15 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 20:15:34.495291 - -[76] Log opened at 2024-10-21 20:15:34.646347 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] Log opened at 2024-10-21 20:15:34.654047 -[76] [Step Debug] -> - -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[94] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[76] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[94] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[94] [Step Debug] -> - -[76] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[94] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[110] Log opened at 2024-10-21 20:15:34.747209 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[76] [Step Debug] <- run -i 20 -[94] [Step Debug] <- run -i 20 -[110] [Step Debug] <- run -i 6 -[94] [Step Debug] -> - -[94] Log closed at 2024-10-21 20:15:35.370857 - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] Log closed at 2024-10-21 20:15:35.861671 - -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:15:36.074830 - -[92] Log opened at 2024-10-21 20:16:14.601308 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1469 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[92] [Step Debug] -> - -[92] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[92] [Step Debug] -> - -[92] [Step Debug] <- run -i 16 -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] -> - -[92] [Step Debug] <- stack_get -i 17 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- context_names -i 22 -d 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 24 -n "$linea" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- run -i 25 -[92] [Step Debug] -> - -[92] [Step Debug] <- stack_get -i 26 -[92] [Step Debug] -> - -[92] [Step Debug] <- stack_get -i 27 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- context_names -i 32 -d 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- property_get -i 34 -n "$linea" -d 0 -c 0 -[92] [Step Debug] -> - -[92] [Step Debug] <- run -i 35 -[92] [Step Debug] -> - -[92] Log closed at 2024-10-21 20:16:32.977654 - -[87] Log opened at 2024-10-21 20:16:53.490451 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1528 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 16 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 20:16:58.153032 - -[103] Log opened at 2024-10-21 20:17:18.358897 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] -> - -[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[103] [Step Debug] -> - -[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[103] [Step Debug] -> - -[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[103] [Step Debug] -> - -[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[103] [Step Debug] -> - -[103] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1580 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[103] [Step Debug] -> - -[103] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[103] [Step Debug] -> - -[103] [Step Debug] <- run -i 16 -[103] [Step Debug] -> - -[103] [Step Debug] -> - -[103] [Step Debug] -> - -[103] [Step Debug] -> - -[103] [Step Debug] -> - -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 17 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 22 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 24 -n "$cubierta" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 25 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 26 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 27 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 29 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 30 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 31 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 33 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 34 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 37 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 38 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 39 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 41 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 42 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 43 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 44 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 45 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 46 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 47 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 48 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 49 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 50 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 51 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 54 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 56 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 58 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 59 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 60 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 61 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 62 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 64 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 66 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 67 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 68 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 70 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 72 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 73 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 74 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 75 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 76 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 77 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 78 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 79 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 80 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 81 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 82 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 83 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 84 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 85 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 86 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 87 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 88 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 89 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 90 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 91 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 92 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 96 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 97 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 98 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 99 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 100 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 101 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 102 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 103 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 104 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 105 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 106 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 107 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 108 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 109 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 110 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 111 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 112 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 113 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 114 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 115 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 116 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 117 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 118 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 119 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 120 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 121 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 122 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 123 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 124 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 125 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 126 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 127 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 129 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 130 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 131 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 132 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 133 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 134 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 135 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 136 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 137 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 138 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 139 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 140 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 141 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 142 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 143 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 144 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 145 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 146 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 147 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 148 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 149 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 150 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 151 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 152 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 153 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 154 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 155 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 156 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 157 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 158 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 159 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 160 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 161 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 162 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 163 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 164 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 165 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 166 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 167 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 168 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 169 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 170 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 171 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 172 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 173 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 174 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 175 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 176 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 177 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 178 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 179 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 180 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 181 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 182 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 183 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 184 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 185 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 186 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 187 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 188 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 189 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 190 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 191 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 192 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 193 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 194 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 195 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 196 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 197 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 198 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 199 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 200 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 201 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 202 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 203 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 204 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 205 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 206 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 207 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 208 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 209 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 210 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 211 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 212 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 213 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 214 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 215 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 216 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 217 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 218 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 219 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 220 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 221 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 222 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 223 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 224 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 225 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 226 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 227 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 228 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 229 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 230 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 231 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 232 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 233 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 234 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 235 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 236 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 237 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 238 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 239 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 240 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 241 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 242 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 243 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 244 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 245 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 246 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 247 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 248 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 249 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 250 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 251 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 252 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 253 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 254 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 255 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 256 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 257 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 258 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 259 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 260 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 261 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 262 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 263 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 264 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 265 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 266 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 267 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 268 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 269 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 270 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 271 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 272 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 273 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 274 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 275 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 276 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 277 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 278 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 279 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 280 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 281 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 282 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 283 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 284 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 285 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 286 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 287 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 288 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 289 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 290 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 291 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 292 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 293 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 294 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 295 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 296 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 297 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 298 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 299 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 300 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 301 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 302 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 303 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 304 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 305 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 306 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 307 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 308 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 309 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 310 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 311 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 312 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 313 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 314 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 315 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 316 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 317 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 318 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 319 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 320 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 321 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 322 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 323 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 324 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 325 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 326 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 327 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 328 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 329 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 330 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 331 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 332 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 333 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 334 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 335 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 336 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 337 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 338 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 339 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 340 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 341 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 342 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 343 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 344 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 345 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 346 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 347 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 348 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 349 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 350 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 351 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 352 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 353 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 354 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 355 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 356 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 357 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 358 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 359 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 360 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 361 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 362 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 363 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 364 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 365 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 366 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 367 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 368 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 369 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 370 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 371 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 372 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 373 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 374 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 375 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 376 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 377 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 378 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 379 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 380 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 381 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 382 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 383 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 384 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 385 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 386 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 387 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 388 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 389 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 390 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 391 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 392 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 393 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 394 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 395 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 396 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 397 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 398 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 399 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 400 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 401 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 402 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 403 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 404 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 405 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 406 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 407 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 408 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 409 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 410 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 411 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 412 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 413 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 414 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 415 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 416 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 417 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 418 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 419 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 420 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 421 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 422 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 423 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 424 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 425 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 426 -n "$coste_sobrecubierta" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- step_over -i 427 -[103] [Step Debug] -> - -[103] [Step Debug] <- stack_get -i 428 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 429 -n "$datos_entrada" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 430 -n "$data" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 431 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- property_get -i 432 -n "$datos_papel" -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_names -i 433 -d 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- context_get -i 434 -d 0 -c 0 -[103] [Step Debug] -> - -[103] [Step Debug] <- run -i 435 -[103] [Step Debug] -> - -[103] Log closed at 2024-10-21 20:18:42.806554 - -[107] Log opened at 2024-10-21 20:19:16.762529 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1580 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[107] [Step Debug] -> - -[107] [Step Debug] <- run -i 16 -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] <- stack_get -i 17 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_names -i 22 -d 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_remove -i 24 -d 1070022 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] <- run -i 26 -[107] [Step Debug] -> - -[107] [Step Debug] <- stack_get -i 27 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_names -i 32 -d 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 34 -n "$linea_sobrecubierta" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- step_over -i 35 -[107] [Step Debug] -> - -[107] [Step Debug] <- stack_get -i 36 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 37 -n "$datos_entrada" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 39 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 40 -n "$datos_papel" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_names -i 41 -d 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_get -i 42 -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 43 -n "$linea_sobrecubierta" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDMyODRlYzZkYjQ3MDVhY2JiM2YyNzBmZWQyYzkxMzVjYTIzNzVlY2EwYmQyN2NiN2YzZTY5MzAxMjNmNzE1ZSddPVByZXN1cHVlc3RvQ2xpZW50ZVNlcnZpY2U6Om9idGVuZXJTb2JyZWN1YmllcnRh -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 45 -n "$input_data" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- run -i 46 -[107] [Step Debug] -> - -[107] Log closed at 2024-10-21 20:20:53.178111 - -[107] Log opened at 2024-10-21 20:20:57.199498 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[107] [Step Debug] -> - -[99] Log opened at 2024-10-21 20:20:57.212222 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[99] [Step Debug] -> - -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[99] [Step Debug] -> - -[99] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1 -[99] [Step Debug] -> - -[108] Log opened at 2024-10-21 20:20:57.225986 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[107] [Step Debug] -> - -[99] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[107] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[107] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[99] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[99] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[107] [Step Debug] -> - -[99] [Step Debug] -> - -[99] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[99] [Step Debug] -> - -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[102] Log opened at 2024-10-21 20:20:57.241907 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[102] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 7 -[107] [Step Debug] <- run -i 16 -[99] [Step Debug] <- run -i 16 -[102] [Step Debug] <- run -i 7 -[99] [Step Debug] -> - -[99] [Step Debug] -> - -[99] [Step Debug] -> - -[99] [Step Debug] -> - -[99] [Step Debug] -> - -[99] [Step Debug] -> - -[99] [Step Debug] <- stack_get -i 17 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_names -i 22 -d 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- run -i 24 -[99] [Step Debug] -> - -[99] [Step Debug] <- stack_get -i 25 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 26 -n "$datos_entrada" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 28 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 29 -n "$datos_papel" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_names -i 30 -d 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- run -i 32 -[99] [Step Debug] -> - -[99] [Step Debug] <- stack_get -i 33 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 36 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 37 -n "$datos_papel" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_names -i 38 -d 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- run -i 40 -[99] [Step Debug] -> - -[99] [Step Debug] <- stack_get -i 41 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 42 -n "$datos_entrada" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 43 -n "$data" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 44 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- property_get -i 45 -n "$datos_papel" -d 0 -c 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_names -i 46 -d 0 -[99] [Step Debug] -> - -[99] [Step Debug] <- context_get -i 47 -d 0 -c 0 -[99] [Step Debug] -> - -[94] Log opened at 2024-10-21 20:21:42.860007 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[94] [Step Debug] -> - -[94] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[94] [Step Debug] -> - -[76] Log opened at 2024-10-21 20:21:48.865645 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[99] [Step Debug] <- run -i 48 -[99] [Step Debug] -> - -[99] Log closed at 2024-10-21 20:21:57.215592 - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] -> - -[107] [Step Debug] <- stack_get -i 17 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 18 -n "$datos_entrada" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 20 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 21 -n "$datos_papel" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_names -i 22 -d 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- run -i 24 -[107] [Step Debug] -> - -[107] [Step Debug] <- stack_get -i 25 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 26 -n "$datos_entrada" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 28 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 29 -n "$datos_papel" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_names -i 30 -d 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_get -i 31 -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- run -i 32 -[107] [Step Debug] -> - -[107] [Step Debug] <- stack_get -i 33 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 36 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- property_get -i 37 -n "$datos_papel" -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_names -i 38 -d 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[107] [Step Debug] -> - -[107] [Step Debug] <- stop -i 40 -[107] [Step Debug] -> - -[94] [Step Debug] <- stop -i 16 -[76] [Step Debug] <- stop -i 16 -[76] [Step Debug] -> - -[94] [Step Debug] -> - -[107] [Step Debug] -> - -[107] Log closed at 2024-10-21 20:22:20.105444 - -[92] Log opened at 2024-10-21 20:22:20.141110 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:22:35.974337 - -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:22:51.912644 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 20:22:52.597208 - -[92] Log opened at 2024-10-21 20:22:52.774323 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 20:22:53.452820 - -[92] Log opened at 2024-10-21 20:22:53.867423 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 20:22:53.877171 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] Log opened at 2024-10-21 20:22:54.893856 -[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 20:22:55.112565 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-21 20:22:55.807109 - -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] Log closed at 2024-10-21 20:22:56.241059 - -[107] Log opened at 2024-10-21 20:23:02.850103 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 20:23:04.132142 - -[107] Log opened at 2024-10-21 20:23:04.233959 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 20:23:04.895436 - -[87] Log opened at 2024-10-21 20:23:05.194174 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-21 20:23:05.287290 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-21 20:23:05.335011 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 20:23:06.586593 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:23:07.233479 - -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-21 20:23:07.628487 - -[110] Log opened at 2024-10-21 20:23:58.826101 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:23:59.911796 - -[110] Log opened at 2024-10-21 20:23:59.929853 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:24:00.919606 - -[110] Log opened at 2024-10-21 20:24:01.026885 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:24:01.680509 - -[87] Log opened at 2024-10-21 20:24:01.898124 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:24:02.804742 - -[87] Log opened at 2024-10-21 20:24:03.538876 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:24:05.027092 - -[87] Log opened at 2024-10-21 20:24:05.039254 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:24:06.181221 - -[87] Log opened at 2024-10-21 20:24:06.233442 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:24:06.874419 - -[87] Log opened at 2024-10-21 20:24:06.968790 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] Log opened at 2024-10-21 20:24:06.978618 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-21 20:24:07.970970 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:24:08.596519 - -[114] Log opened at 2024-10-21 20:24:32.006325 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-21 20:24:33.256663 - -[114] Log opened at 2024-10-21 20:24:33.324507 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-21 20:24:33.986128 - -[108] Log opened at 2024-10-21 20:24:34.123000 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] Log opened at 2024-10-21 20:24:34.124793 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 20:24:34.239700 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 20:24:35.101759 - -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 20:24:35.699552 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 20:24:36.164260 - -[113] Log opened at 2024-10-21 20:24:46.876889 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] Log closed at 2024-10-21 20:24:48.606432 - -[113] Log opened at 2024-10-21 20:24:48.676631 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] Log closed at 2024-10-21 20:24:49.345532 - -[108] Log opened at 2024-10-21 20:24:49.517694 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] Log opened at 2024-10-21 20:24:49.526047 -[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-21 20:24:49.527314 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] Log closed at 2024-10-21 20:24:50.569754 - -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:24:50.905777 - -[115] Log opened at 2024-10-21 20:24:51.095739 -[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 20:24:51.557543 - -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] Log closed at 2024-10-21 20:24:52.707988 - -[108] Log opened at 2024-10-21 20:24:52.735765 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] Log opened at 2024-10-21 20:24:52.799768 -[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-21 20:24:52.813692 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 20:24:52.839147 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-21 20:24:53.857193 - -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:25:10.847605 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 20:25:26.992383 - -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] Log closed at 2024-10-21 20:25:44.054223 - -[114] Log opened at 2024-10-21 20:26:12.757665 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-21 20:26:14.518295 - -[114] Log opened at 2024-10-21 20:26:14.648073 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-21 20:26:15.291776 - -[87] Log opened at 2024-10-21 20:26:15.556728 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] Log opened at 2024-10-21 20:26:15.720373 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] Log opened at 2024-10-21 20:26:15.724439 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-21 20:26:16.717964 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:26:17.320828 - -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] Log closed at 2024-10-21 20:26:18.193958 - -[112] Log opened at 2024-10-21 20:26:18.251548 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-21 20:26:20.161315 - -[112] Log opened at 2024-10-21 20:26:20.191744 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 20:26:20.271786 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] Log opened at 2024-10-21 20:26:20.299680 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-21 20:26:21.331044 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] Log closed at 2024-10-21 20:26:35.440580 - -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] Log closed at 2024-10-21 20:26:49.992359 - -[113] Log opened at 2024-10-21 20:28:12.265501 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 17 -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:28:13.519853 - -[113] Log opened at 2024-10-21 20:28:13.672744 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 17 -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:28:13.869711 - -[107] Log opened at 2024-10-21 20:28:14.196440 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[107] [Step Debug] -> - -[108] Log opened at 2024-10-21 20:28:14.271527 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-21 20:28:14.271527 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[110] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[107] [Step Debug] <- run -i 17 -[110] [Step Debug] <- run -i 6 -[108] [Step Debug] <- run -i 6 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:28:14.838086 - -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:28:14.969590 - -[110] Log opened at 2024-10-21 20:28:15.018253 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[107] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 17 -[107] [Step Debug] -> - -[107] Log closed at 2024-10-21 20:28:15.407964 - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] <- stack_get -i 18 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 21 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- context_names -i 23 -d 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 25 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:28:22.409459 - -[110] Log opened at 2024-10-21 20:28:22.450699 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[110] [Step Debug] -> - -[102] Log opened at 2024-10-21 20:28:22.538437 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[115] Log opened at 2024-10-21 20:28:22.557137 -[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] -> - -[115] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[115] [Step Debug] -> - -[115] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[115] [Step Debug] -> - -[115] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[115] [Step Debug] -> - -[115] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[115] [Step Debug] -> - -[115] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[115] [Step Debug] -> - -[102] [Step Debug] <- run -i 6 -[110] [Step Debug] <- run -i 17 -[115] [Step Debug] <- run -i 6 -[114] Log opened at 2024-10-21 20:28:22.610574 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 639 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 829 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1575 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1662 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2261 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 403 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 437 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_remove -i 17 -d 1140006 -[114] [Step Debug] -> - -[115] [Step Debug] -> - -[115] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[115] [Step Debug] -> - -[115] Log closed at 2024-10-21 20:28:37.531541 - -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_remove -i 18 -d 1100028 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:28:37.729903 - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 576 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:28:52.234130 - -[114] [Step Debug] <- breakpoint_remove -i 18 -d 1140001 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_remove -i 19 -d 1140002 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_remove -i 20 -d 1140003 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_remove -i 21 -d 1140004 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_remove -i 22 -d 1140005 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_remove -i 23 -d 1140007 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_remove -i 24 -d 1140008 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[114] [Step Debug] -> - -[112] Log opened at 2024-10-21 20:30:53.010540 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[112] [Step Debug] -> - -[114] [Step Debug] <- run -i 26 -[112] [Step Debug] <- run -i 10 -[112] [Step Debug] -> - -[114] [Step Debug] -> - -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 27 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 32 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[114] [Step Debug] -> - -[112] [Step Debug] -> - -[112] Log closed at 2024-10-21 20:30:54.384291 - -[112] Log opened at 2024-10-21 20:30:54.538370 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[112] [Step Debug] -> - -[112] [Step Debug] <- run -i 10 -[112] [Step Debug] -> - -[112] Log closed at 2024-10-21 20:30:54.663784 - -[87] Log opened at 2024-10-21 20:30:54.991296 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[113] Log opened at 2024-10-21 20:30:55.024419 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[116] Log opened at 2024-10-21 20:30:55.023658 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[116] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[113] [Step Debug] -> - -[87] [Step Debug] <- run -i 10 -[113] [Step Debug] <- run -i 6 -[116] [Step Debug] <- run -i 6 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:30:55.604097 - -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 20:30:55.999772 - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:30:56.132327 - -[116] Log opened at 2024-10-21 20:30:56.176097 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 10 -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:30:57.218555 - -[116] Log opened at 2024-10-21 20:30:57.252150 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 10 -[87] Log opened at 2024-10-21 20:30:57.332553 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[113] Log opened at 2024-10-21 20:30:57.360120 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[87] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[87] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[113] [Step Debug] -> - -[108] Log opened at 2024-10-21 20:30:57.391198 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[113] [Step Debug] <- run -i 10 -[87] [Step Debug] <- run -i 10 -[108] [Step Debug] <- run -i 6 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:30:57.955430 - -[114] [Step Debug] <- step_over -i 34 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 35 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 36 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 38 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 40 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 41 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 42 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 43 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 48 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 50 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 51 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 52 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 53 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 55 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 56 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 57 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 58 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 59 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 60 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 61 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 63 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 64 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 65 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 66 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 67 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 68 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 69 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 70 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 72 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 73 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 74 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 75 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 76 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 77 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 78 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 80 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 81 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 82 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 83 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 84 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 85 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 86 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 87 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 88 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 89 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 90 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 91 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 92 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 93 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 94 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 95 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 96 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 97 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 98 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 99 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 100 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 101 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 102 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 103 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 104 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 105 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 106 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 107 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 108 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 109 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 110 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 111 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 112 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 113 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 114 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 115 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 116 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 117 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 118 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 119 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 120 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 121 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 122 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 123 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 124 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 125 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 126 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 127 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 128 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 129 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 130 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 131 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 132 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 133 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 134 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 135 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 136 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 137 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 138 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 139 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 140 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 141 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 142 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 143 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 144 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 145 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 146 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 147 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 148 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 149 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 150 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 151 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 152 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 153 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 154 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 155 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 156 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 157 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 158 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 159 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 160 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 161 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 162 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 163 -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- step_over -i 164 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 165 -[114] [Step Debug] -> - -[114] [Step Debug] <- stack_get -i 166 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 167 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 168 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 169 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 170 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 171 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 172 -d 0 -c 0 -[114] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1445 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:31:14.367035 - -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 11 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 12 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 14 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 16 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 18 -[114] [Step Debug] <- property_get -i 173 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 174 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 175 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 176 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_names -i 177 -d 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- context_get -i 178 -d 0 -c 0 -[114] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 19 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 20 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 22 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 23 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 24 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 26 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 27 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 30 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 31 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 32 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 34 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 35 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 36 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 38 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 40 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 41 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 42 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 43 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 44 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 48 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 49 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 50 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 51 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 54 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 56 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 58 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 59 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 60 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 61 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 63 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 64 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 65 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 66 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 67 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 68 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 69 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 70 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 72 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 73 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 74 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 75 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 76 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 77 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 78 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 80 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 81 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 82 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 83 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 84 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 85 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 86 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 87 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 88 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 89 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 90 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 91 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 92 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 93 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 94 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 95 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 96 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 97 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 98 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 99 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 101 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 102 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 103 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 104 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 105 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 106 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 107 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 108 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 109 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 110 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 111 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 112 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 113 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 114 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 115 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 116 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 117 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 118 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 119 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 120 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 121 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 122 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 123 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 124 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 125 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 126 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 127 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 128 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 129 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 130 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 131 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 132 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 133 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 134 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 135 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 136 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 137 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 138 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 139 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 140 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 141 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 142 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 143 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 144 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 145 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 146 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 147 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 148 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 149 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 150 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 151 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 152 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 153 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 154 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 155 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 156 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 157 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 158 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 159 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 160 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 161 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 162 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 163 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 164 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 165 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 166 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 167 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 168 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 169 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 170 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 171 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 172 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 173 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 174 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 175 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 176 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 177 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 178 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 179 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 180 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 181 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 182 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 183 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 184 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 185 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 186 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 187 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 188 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 189 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 190 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 191 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 192 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 193 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 194 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 195 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 196 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 197 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 198 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 199 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 200 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 201 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 202 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 203 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 204 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 205 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 206 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 207 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 208 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 209 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 210 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 211 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 212 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 213 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 214 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 215 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 216 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 217 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 218 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 219 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 220 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 221 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 222 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 223 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 224 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 225 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 226 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 227 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 228 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 229 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 230 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 231 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 232 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 233 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 234 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 235 -[113] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 179 -n "$datos_entrada" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 180 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 181 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 182 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 236 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 237 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 238 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 239 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 240 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 241 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 242 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 243 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 244 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 245 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 246 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 247 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 248 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 249 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 250 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 251 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 252 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 253 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 254 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 255 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 256 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 257 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 258 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 259 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 260 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 261 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 262 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 263 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 264 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 265 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 266 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 267 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 268 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 269 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 270 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 271 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 272 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 273 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 274 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 275 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 276 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 277 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 278 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 279 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 280 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 281 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 282 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 283 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 284 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 285 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 286 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 287 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 288 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 289 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 290 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 291 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 292 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 293 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 294 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 295 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 296 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 297 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 298 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 299 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 300 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 301 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 302 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 303 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 304 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 305 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 306 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 307 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 308 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 309 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 310 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 311 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 312 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 313 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 314 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 315 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 316 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 317 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 318 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 319 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 320 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 321 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 322 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 323 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 324 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 325 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 326 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 327 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 328 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 329 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 330 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 331 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 332 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 333 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 334 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 335 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 336 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 337 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 338 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 339 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 340 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 341 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 342 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 343 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 344 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 345 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 346 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 347 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 348 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 349 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 350 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 351 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 352 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 353 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 354 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 355 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 356 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 357 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 358 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 359 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 360 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 361 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 362 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 363 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 364 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 365 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 366 -n "$datos_entrada" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 367 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 368 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 369 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 370 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 371 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 372 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 373 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 374 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 375 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 376 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 377 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 378 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 379 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 380 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 381 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 382 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 383 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 384 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 385 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 386 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 387 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 388 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 389 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 390 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 391 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 392 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 393 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 394 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 395 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 396 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 397 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 398 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 399 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 400 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 401 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 402 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 403 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 404 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 405 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 406 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 407 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 408 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 409 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 410 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 411 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 412 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 413 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 414 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 415 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 416 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 417 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 418 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 419 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 420 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 421 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 422 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 423 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 424 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 425 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 426 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 427 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 428 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 429 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 430 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 431 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 432 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 433 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 434 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 435 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 436 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 437 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 438 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 439 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 440 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 441 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 442 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 443 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 444 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 445 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 446 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 447 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 448 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 449 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 450 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 451 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 452 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 453 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 454 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 455 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 456 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 457 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 458 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 459 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 460 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 461 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 462 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 463 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 464 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 465 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 466 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 467 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 468 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 469 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 470 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 471 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 472 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 473 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 474 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 475 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 476 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 477 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 478 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 479 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 480 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 481 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 482 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 483 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 484 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 485 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 486 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 487 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 488 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 489 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 490 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 491 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 492 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 493 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 494 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 495 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 496 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 497 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 498 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 499 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 500 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 501 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 502 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 503 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 504 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 505 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 506 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 507 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 508 -[114] [Step Debug] <- property_get -i 183 -n "$t" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 184 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 185 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 186 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 509 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 510 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 511 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 512 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 513 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 514 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 515 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 516 -[114] [Step Debug] <- property_get -i 187 -n "$t" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 188 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 189 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 190 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 517 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 518 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 519 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 520 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 521 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 522 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 523 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 524 -[114] [Step Debug] <- property_get -i 191 -n "$t" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 192 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 193 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 194 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 525 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 526 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 527 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 528 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 529 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 530 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 531 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 532 -[114] [Step Debug] <- property_get -i 195 -n "$t" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 196 -n "$data" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 197 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[114] [Step Debug] -> - -[114] [Step Debug] <- property_get -i 198 -n "$datos_papel" -d 0 -c 0 -[114] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 533 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 534 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 535 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 536 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 537 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 538 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 539 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 540 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 541 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 542 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 543 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 544 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 545 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 546 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 547 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 548 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 549 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 550 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 551 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 552 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 553 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 554 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 555 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 556 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 557 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 558 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 559 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 560 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 561 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 562 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 563 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 564 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 565 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 566 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 567 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 568 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 569 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 570 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 571 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 572 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 573 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 574 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 575 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 576 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 577 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 578 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 579 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 580 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 581 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 582 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 583 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 584 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 585 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 586 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 587 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 588 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 589 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 590 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 591 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 592 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 593 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 594 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 595 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 596 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 597 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 598 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 599 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 600 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 601 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 602 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 603 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 604 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 605 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 606 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 607 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 608 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 609 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 610 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 611 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 612 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 613 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 614 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 615 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 616 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 617 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 618 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 619 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 620 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 621 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 622 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 623 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 624 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 625 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 626 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 627 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 628 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 629 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 630 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 631 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 632 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 633 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 634 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 635 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 636 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 637 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 638 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 639 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 640 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 641 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 642 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 643 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 644 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 645 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 646 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 647 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 648 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 649 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 650 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 651 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 652 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 653 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 654 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 655 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 656 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 657 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 658 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 659 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 660 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 661 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 662 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 663 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 664 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 665 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 666 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 667 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 668 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 669 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 670 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 671 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 672 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 673 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 674 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 675 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 676 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 677 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 678 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 679 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 680 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 681 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 682 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 683 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 684 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 685 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 686 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 687 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 688 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 689 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 690 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 691 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 692 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 693 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 694 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 695 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 696 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 697 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 698 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 699 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 700 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 701 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 702 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 703 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 704 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 705 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 706 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 707 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 708 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 709 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 710 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 711 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 712 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 713 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 714 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 715 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 716 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 717 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 718 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 719 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 720 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 721 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 722 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 723 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 724 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 725 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 726 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 727 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 728 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 729 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 730 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 731 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 732 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 733 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 734 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 735 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 736 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 737 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 738 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 739 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 740 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 741 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 742 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 743 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 744 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 745 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 746 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 747 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 748 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 749 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 750 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 751 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 752 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 753 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 754 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 755 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 756 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 757 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 758 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 759 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 760 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 761 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 762 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 763 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 764 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 765 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 766 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 767 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 768 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 769 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 770 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 771 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 772 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 773 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 774 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 775 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 776 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 777 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 778 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 779 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 780 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 781 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 782 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 783 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 784 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 785 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 786 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 787 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 788 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 789 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 790 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 791 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 792 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 793 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 794 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 795 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 796 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 797 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 798 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 799 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 800 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 801 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 802 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 803 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 804 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 805 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 806 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 807 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 808 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 809 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 810 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 811 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 812 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 813 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 814 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 815 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 816 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 817 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 818 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 819 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 820 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 821 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 822 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 823 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 824 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 825 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 826 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 827 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 828 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 829 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 830 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 831 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 832 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 833 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 834 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 835 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 836 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 837 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 838 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 839 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 840 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 841 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 842 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 843 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 844 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 845 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 846 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 847 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 848 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 849 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 850 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 851 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 852 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 853 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 854 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 855 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 856 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 857 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 858 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 859 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 860 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 861 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 862 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 863 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 864 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 865 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 866 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 867 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 868 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 869 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 870 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 871 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 872 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 873 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 874 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 875 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 876 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 877 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 878 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 879 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 880 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 881 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 882 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 883 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 884 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 885 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 886 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 887 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 888 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 889 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 890 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 891 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 892 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 893 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 894 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 895 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 896 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 897 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 898 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 899 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 900 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 901 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 902 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 903 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 904 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 905 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 906 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 907 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 908 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 909 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 910 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 911 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 912 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 913 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 914 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 915 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 916 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 917 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 918 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 919 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 920 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 921 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 922 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 923 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 924 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 925 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 926 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 927 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 928 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 929 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 930 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 931 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 932 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 933 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 934 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 935 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 936 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 937 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 938 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 939 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 940 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 941 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 942 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 943 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 944 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 945 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 946 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 947 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 948 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 949 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 950 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 951 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 952 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 953 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 954 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 955 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 956 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 957 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 958 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 959 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 960 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 961 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 962 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 963 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 964 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 965 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 966 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 967 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 968 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 969 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 970 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 971 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 972 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 973 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 974 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 975 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 976 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 977 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 978 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 979 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 980 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 981 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 982 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 983 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 984 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 985 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 986 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 987 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 988 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 989 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 990 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 991 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 992 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 993 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 994 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 995 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 996 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 997 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 998 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 999 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1000 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1001 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1002 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1003 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1004 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1005 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1006 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1007 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1008 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1009 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1010 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1011 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1012 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1013 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1014 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1015 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1016 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1017 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1018 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1019 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1020 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1021 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1022 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1023 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1024 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1025 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1026 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1027 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1028 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1029 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1030 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1031 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1032 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1033 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1034 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1035 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1036 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1037 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1038 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1039 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1040 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1041 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1042 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1043 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1044 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1045 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1046 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1047 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1048 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1049 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1050 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1051 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1052 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1053 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1054 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1055 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1056 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1057 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1058 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1059 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1060 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1061 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1062 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1063 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1064 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1065 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1066 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1067 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1068 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1069 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1070 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1071 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1072 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1073 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1074 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1075 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1076 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1077 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1078 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1079 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1080 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1081 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1082 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1083 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1084 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1085 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1086 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1087 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1088 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1089 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1090 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1091 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1092 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1093 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1094 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1095 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1096 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1097 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1098 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1099 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1100 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1101 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1102 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1103 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1104 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1105 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1106 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1107 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1108 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1109 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1110 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1111 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1112 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1113 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1114 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1115 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1116 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1117 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1118 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1119 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1120 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1121 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1122 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1123 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1124 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1125 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1126 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1127 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1128 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1129 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1130 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1131 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1132 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1133 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1134 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1135 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1136 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1137 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1138 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1139 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1140 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1141 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1142 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1143 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1144 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1145 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1146 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1147 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1148 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1149 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1150 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1151 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1152 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1153 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1154 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1155 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1156 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1157 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1158 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1159 -n "$linea_sobrecubierta" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1160 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1161 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1162 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1163 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1164 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1165 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1166 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1167 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1168 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1169 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1170 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1171 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1172 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1173 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1174 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1175 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1176 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1177 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1178 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1179 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1180 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1181 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1182 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1183 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1184 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1185 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1186 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1187 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1188 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1189 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1190 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1191 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1192 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1193 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1194 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1195 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1196 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1197 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1198 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1199 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1200 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1201 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1202 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1203 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1204 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1205 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1206 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1207 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1208 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1209 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1210 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1211 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1212 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1213 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1214 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1215 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1216 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1217 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1218 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1219 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1220 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1221 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1222 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1223 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1224 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1225 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1226 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1227 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1228 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1229 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1230 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1231 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1232 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1233 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1234 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1235 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1236 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1237 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1238 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1239 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1240 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1241 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1242 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1243 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1244 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1245 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1246 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1247 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1248 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1249 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1250 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1251 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1252 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1253 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1254 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1255 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1256 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1257 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1258 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1259 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1260 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1261 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1262 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1263 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1264 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1265 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1266 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1267 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1268 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1269 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1270 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1271 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1272 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1273 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1274 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1275 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1276 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1277 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1278 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1279 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1280 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1281 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1282 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1283 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1284 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1285 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1286 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1287 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1288 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1289 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1290 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1291 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1292 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1293 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1294 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1295 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1296 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1297 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1298 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1299 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1300 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1301 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1302 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1303 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1304 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1305 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1306 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1307 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1308 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1309 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1310 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1311 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1312 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1313 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1314 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1315 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1316 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1317 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1318 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1319 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1320 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1321 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1322 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1323 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1324 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1325 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1326 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1327 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1328 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1329 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1330 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1331 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1332 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1333 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1334 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1335 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1336 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1337 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1338 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1339 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1340 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1341 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1342 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1343 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1344 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1345 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1346 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1347 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1348 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1349 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1350 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1351 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1352 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1353 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1354 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1355 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1356 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1357 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1358 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1359 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1360 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1361 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1362 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1363 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1364 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1365 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1366 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1367 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1368 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1369 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1370 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1371 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1372 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1373 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1374 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1375 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1376 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1377 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1378 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1379 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1380 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1381 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1382 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1383 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1384 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1385 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1386 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1387 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1388 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1389 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1390 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1391 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1392 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1393 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1394 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1395 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1396 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1397 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1398 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1399 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1400 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1401 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1402 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1403 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1404 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1405 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1406 -n "$tipo_impresion_id" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1407 -n "$tipo_impresion_id" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1408 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1409 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1410 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1411 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1412 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1413 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1414 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1415 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1416 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1417 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1418 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1419 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1420 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1421 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1422 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1423 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1424 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1425 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1426 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1427 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1428 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1429 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1430 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1431 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1432 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1433 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1434 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1435 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1436 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1437 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1438 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1439 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1440 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1441 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1442 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1443 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1444 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1445 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1446 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1447 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1448 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1449 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1450 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1451 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1452 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1453 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1454 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1455 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1456 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1457 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1458 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1459 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1460 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1461 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1462 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1463 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1464 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1465 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1466 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1467 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1468 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1469 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1470 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1471 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1472 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1473 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1474 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1475 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1476 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1477 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1478 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1479 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1480 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1481 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1482 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1483 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1484 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1485 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1486 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1487 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1488 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1489 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1490 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1491 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1492 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1493 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1494 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1495 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1496 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1497 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1498 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1499 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1500 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1501 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1502 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1503 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1504 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1505 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1506 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1507 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1508 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1509 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1510 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1511 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1512 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1513 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1514 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1515 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1516 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1517 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1518 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1519 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1520 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1521 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1522 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1523 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1524 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1525 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1526 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1527 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1528 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1529 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1530 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1531 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1532 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1533 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1534 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1535 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1536 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1537 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1538 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1539 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1540 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1541 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1542 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1543 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1544 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1545 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1546 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1547 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1548 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1549 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1550 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1551 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1552 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1553 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1554 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1555 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1556 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1557 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1558 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1559 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1560 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1561 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1562 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1563 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1564 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1565 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1566 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1567 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1568 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1569 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1570 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1571 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1572 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1573 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1574 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1575 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1576 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1577 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1578 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1579 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1580 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1581 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1582 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1583 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1584 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1585 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1586 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1587 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1588 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1589 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1590 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1591 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1592 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1593 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1594 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1595 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1596 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1597 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1598 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1599 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1600 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1601 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1602 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1603 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1604 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1605 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1606 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1607 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1608 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1609 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1610 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1611 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1612 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1613 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1614 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1615 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1616 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1617 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1618 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1619 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1620 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1621 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1622 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1623 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1624 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1625 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1626 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1627 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1628 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1629 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1630 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1631 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1632 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1633 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1634 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1635 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1636 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1637 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1638 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1639 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1640 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1641 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1642 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1643 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1644 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1645 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1646 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1647 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1648 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1649 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1650 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1651 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1652 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1653 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1654 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1655 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1656 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1657 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1658 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1659 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1660 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1661 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1662 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1663 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1664 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1665 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1666 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1667 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1668 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1669 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1670 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1671 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1672 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1673 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1674 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1675 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1676 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1677 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1678 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1679 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1680 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1681 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1682 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1683 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1684 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1685 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1686 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1687 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1688 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1689 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1690 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1691 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1692 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1693 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1694 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1695 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1696 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1697 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1698 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1699 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1700 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1701 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1702 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1703 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1704 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1705 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1706 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1707 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1708 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1709 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1710 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1711 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1712 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1713 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1714 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1715 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1716 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1717 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1718 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1719 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1720 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1721 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1722 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1723 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1724 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1725 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1726 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1727 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1728 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1729 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1730 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1731 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1732 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1733 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1734 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1735 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1736 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1737 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1738 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1739 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1740 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1741 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1742 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1743 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1744 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1745 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1746 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1747 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1748 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1749 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1750 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1751 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1752 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1753 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1754 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1755 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1756 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1757 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1758 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1759 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1760 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1761 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1762 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1763 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1764 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1765 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1766 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1767 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1768 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1769 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1770 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1771 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1772 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1773 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1774 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1775 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1776 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1777 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1778 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 1779 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 1780 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1781 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1782 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1783 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1784 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 1785 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 1786 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 1787 -n "$datos_presupuesto" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_remove -i 1788 -d 1130023 -[114] [Step Debug] <- breakpoint_remove -i 199 -d 1140012 -[114] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 1789 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 -[114] [Step Debug] <- breakpoint_set -i 200 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 -[114] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[114] [Step Debug] -> - -[114] [Step Debug] <- stop -i 201 -[114] [Step Debug] -> - -[113] [Step Debug] <- stop -i 1790 -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[114] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:37:36.014613 - -[114] Log closed at 2024-10-21 20:37:36.014715 - -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_remove -i 11 -d 1130023 -[87] [Step Debug] -> - -[87] [Step Debug] <- stop -i 12 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 20:37:36.261088 - -[110] Log opened at 2024-10-21 20:37:46.848504 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:37:48.514599 - -[110] Log opened at 2024-10-21 20:37:48.690894 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:37:49.339948 - -[102] Log opened at 2024-10-21 20:37:49.712228 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] Log opened at 2024-10-21 20:37:49.726220 -[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' -[110] Log opened at 2024-10-21 20:37:49.726503 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] Log closed at 2024-10-21 20:37:50.731847 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 20:37:51.346858 - -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:37:51.693911 - -[117] Log opened at 2024-10-21 20:37:51.757919 -[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] Log closed at 2024-10-21 20:37:53.377641 - -[117] Log opened at 2024-10-21 20:37:53.405145 -[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 20:37:53.453310 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-21 20:37:53.467362 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] Log opened at 2024-10-21 20:37:53.489036 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] Log closed at 2024-10-21 20:37:54.518707 - -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-21 20:38:08.062995 - -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-21 20:38:21.891920 - -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-21 20:38:39.443573 - -[107] Log opened at 2024-10-21 20:39:18.526283 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-21 20:39:23.276317 - -[116] Log opened at 2024-10-21 20:39:35.981635 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 11 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:39:40.044158 - -[116] Log opened at 2024-10-21 20:39:43.126564 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 11 -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] <- stack_get -i 12 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 13 -n "$t" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 15 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_names -i 17 -d 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 19 -[116] [Step Debug] -> - -[116] [Step Debug] <- stack_get -i 20 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 21 -n "$t" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 23 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 24 -n "$datos_papel" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_names -i 25 -d 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 27 -n "$return_data" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 28 -n "$return_data[\"errors\"]" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_remove -i 29 -d 1160014 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 31 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:40:14.854184 - -[116] Log opened at 2024-10-21 20:40:17.029430 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 11 -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] <- stack_get -i 12 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 13 -n "$t" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 15 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_names -i 17 -d 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 19 -[116] [Step Debug] -> - -[116] [Step Debug] <- stack_get -i 20 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 21 -n "$t" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 23 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 24 -n "$datos_papel" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_names -i 25 -d 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 27 -n "$totalPapel" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 28 -n "$linea_sobrecubierta" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- step_over -i 29 -[116] [Step Debug] -> - -[116] [Step Debug] <- stack_get -i 30 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 31 -n "$t" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 33 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_names -i 35 -d 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- property_get -i 37 -n "$linea_sobrecubierta" -d 0 -c 0 -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 38 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:40:31.134756 - -[108] Log opened at 2024-10-21 20:40:40.102281 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 10 -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 11 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 12 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 14 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 16 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 19 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 20 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 21 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 23 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 24 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 25 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 26 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_into -i 27 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 28 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 29 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 31 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 32 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 33 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 35 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 36 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 37 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 38 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 40 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 41 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 42 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 43 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 44 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 46 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 48 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 49 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 50 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 52 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 53 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 54 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 55 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 56 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 58 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 60 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 61 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 62 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 63 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 64 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 65 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 66 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 67 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 68 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 69 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 70 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 71 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 72 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 73 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 74 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 75 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 76 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 77 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 78 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 79 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 80 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 81 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 82 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 83 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 84 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 85 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 86 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 87 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 88 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 89 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 90 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 91 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 92 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 96 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 97 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 98 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 99 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 101 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 102 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 103 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 104 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 105 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 106 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 107 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 108 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 109 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 110 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 111 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 112 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 113 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 114 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 115 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 116 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 117 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 118 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 119 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 120 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 121 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 122 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 123 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 124 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 125 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 126 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 127 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 129 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 130 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 131 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 132 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- eval -i 133 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ== -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 134 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 135 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 136 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 137 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 138 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 139 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 140 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 141 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 142 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 143 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 144 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:41:21.264209 - -[108] Log opened at 2024-10-21 20:41:24.915726 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1448 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1665 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 12 -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 13 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 14 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 16 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 18 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_remove -i 20 -d 1080008 -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 21 -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 22 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 23 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 25 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 27 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_remove -i 29 -d 1080009 -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 30 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 31 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 32 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 34 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 35 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 36 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 37 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 38 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 39 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 40 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 42 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 43 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 44 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 45 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ== -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 47 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 48 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 49 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 50 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 51 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 52 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 53 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 54 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- eval -i 55 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ== -[108] [Step Debug] -> - -[108] [Step Debug] <- step_into -i 56 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 57 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 58 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 60 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 61 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 62 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 63 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 64 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 65 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 66 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 67 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 68 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 69 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 70 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 71 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 72 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 73 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 74 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 75 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 76 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 77 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 78 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 79 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 80 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 81 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 82 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 83 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 84 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 85 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 86 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 87 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 88 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 89 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 90 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 91 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 92 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 93 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 94 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 95 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 96 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 97 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 98 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 99 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 100 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 101 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 102 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 103 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 104 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 105 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 106 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 107 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 108 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 109 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 110 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 111 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 112 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 113 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 114 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 115 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 116 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 117 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 118 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 119 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- step_over -i 120 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 121 -[108] [Step Debug] -> - -[108] [Step Debug] <- stack_get -i 122 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 123 -n "$t" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 124 -n "$data" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 125 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- property_get -i 126 -n "$datos_papel" -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_names -i 127 -d 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- context_get -i 128 -d 0 -c 0 -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 129 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:42:13.746191 - -[113] Log opened at 2024-10-21 20:42:23.026995 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 10 -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 11 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 12 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 14 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 16 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 18 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 19 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 20 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 22 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 23 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 24 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 25 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 26 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 27 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 28 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 29 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 31 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 32 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 33 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 35 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 36 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 37 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 39 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 40 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 41 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 42 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_into -i 43 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 44 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 45 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 46 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 47 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 48 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 49 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 50 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 51 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 52 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 53 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 55 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 56 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 57 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 58 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 59 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 61 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 62 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 63 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 64 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 65 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 66 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 67 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 68 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 69 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 70 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 71 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 72 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 73 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 74 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 75 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 76 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 77 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 78 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 79 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 80 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 81 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 82 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 83 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 84 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 85 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 86 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 87 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 88 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 89 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 90 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 91 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 92 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 93 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 94 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 95 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 96 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 97 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 98 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 99 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 100 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 101 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 102 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 103 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 104 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 105 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 106 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 107 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 108 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 109 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 110 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 111 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 112 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 113 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 114 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 115 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 116 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 117 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 118 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 119 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 120 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 121 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 122 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 123 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 124 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 125 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 126 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 127 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 128 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 129 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 130 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 131 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 132 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 133 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 134 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 135 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 136 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 137 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 138 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 139 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 140 -n "$opciones_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 141 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 142 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 143 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 144 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 145 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 146 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 147 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 148 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 149 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 150 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 151 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 152 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 153 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 154 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 155 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 156 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 157 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 158 -n "$papeles" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 159 -n "$papeles[0]" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 160 -n "$input_data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 161 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 162 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 163 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 164 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 165 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 166 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 167 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 168 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 169 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 170 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 171 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 172 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 173 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 174 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 175 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 176 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 177 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 178 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 179 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 180 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 181 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 182 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 183 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 184 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 185 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 186 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 187 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 188 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 189 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 190 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 191 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 192 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 193 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 194 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 195 -n "$maquinas" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 196 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 197 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 198 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 199 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 200 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 201 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 202 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 203 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 204 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 205 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 206 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 207 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 208 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 209 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 210 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 211 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 212 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 213 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_into -i 214 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 215 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 216 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 217 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 218 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 219 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 220 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 221 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 222 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 223 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 224 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 225 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 226 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 227 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 228 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 229 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 230 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 231 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 232 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 233 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 234 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 235 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 236 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 237 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 238 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 239 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 240 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 241 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 242 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 243 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 244 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 245 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 246 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 247 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 248 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 249 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 250 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 251 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 252 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 253 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 254 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 255 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 256 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 257 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 258 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 259 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 260 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 261 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 262 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 263 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 264 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 265 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 266 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 267 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 268 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 269 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 270 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 271 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 272 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 273 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 274 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 275 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 276 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 277 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 278 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 279 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 280 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 281 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 282 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 283 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 284 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 285 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 286 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 287 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 288 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 289 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 290 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 291 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 292 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 293 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 294 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 295 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 296 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 297 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 298 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 299 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 300 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 301 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 302 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 303 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 304 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 305 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 306 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 307 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 308 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 309 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 310 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 311 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 312 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 313 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 314 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 315 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 316 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 317 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 318 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 319 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 320 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 321 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 322 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 323 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 324 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 325 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 326 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 327 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 328 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 329 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 330 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 331 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 332 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 333 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 334 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 335 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 336 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 337 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 338 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 339 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 340 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 341 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 342 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 343 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 344 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 345 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 346 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 347 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 348 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 349 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 350 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 351 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 352 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 353 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 354 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 355 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 356 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 357 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 358 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 359 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 360 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 361 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 362 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 363 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 364 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 365 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 366 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 367 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 368 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 369 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 370 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- step_over -i 371 -[113] [Step Debug] -> - -[113] [Step Debug] <- stack_get -i 372 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 373 -n "$t" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 374 -n "$data" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 375 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 376 -n "$datos_papel" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_names -i 377 -d 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- context_get -i 378 -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- property_get -i 379 -n "$maquinas[0]" -d 0 -c 0 -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 380 -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:44:02.964312 - -[114] Log opened at 2024-10-21 20:44:26.985424 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] Log opened at 2024-10-21 20:44:26.995982 -[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] Log opened at 2024-10-21 20:44:27.006375 -[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-21 20:44:27.017806 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-21 20:44:27.029914 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] Log opened at 2024-10-21 20:44:27.047782 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 11 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:44:41.344227 - -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[114] [Step Debug] -> - -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[114] [Step Debug] -> - -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[114] [Step Debug] -> - -[114] [Step Debug] <- run -i 11 -[114] [Step Debug] -> - -[114] Log closed at 2024-10-21 20:45:00.984959 - -[87] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[87] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[87] [Step Debug] -> - -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[87] [Step Debug] -> - -[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[87] [Step Debug] -> - -[87] [Step Debug] <- run -i 11 -[87] [Step Debug] -> - -[87] Log closed at 2024-10-21 20:45:15.834101 - -[116] Log opened at 2024-10-21 20:45:28.054545 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 11 -[117] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[117] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[117] [Step Debug] -> - -[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[117] [Step Debug] -> - -[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[117] [Step Debug] -> - -[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[117] [Step Debug] -> - -[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[117] [Step Debug] -> - -[117] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[117] [Step Debug] -> - -[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[117] [Step Debug] -> - -[117] [Step Debug] -> - -[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[117] [Step Debug] -> - -[117] [Step Debug] -> - -[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[117] [Step Debug] -> - -[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[117] [Step Debug] -> - -[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[117] [Step Debug] -> - -[117] [Step Debug] <- run -i 11 -[117] [Step Debug] -> - -[117] Log closed at 2024-10-21 20:45:31.234051 - -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 11 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:45:46.364634 - -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[112] [Step Debug] -> - -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[112] [Step Debug] -> - -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[112] [Step Debug] -> - -[112] [Step Debug] <- run -i 11 -[112] [Step Debug] -> - -[112] Log closed at 2024-10-21 20:46:01.967035 - -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:46:02.797885 - -[116] Log opened at 2024-10-21 20:46:02.977436 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 11 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:46:03.185627 - -[108] Log opened at 2024-10-21 20:46:03.824620 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[113] Log opened at 2024-10-21 20:46:03.837062 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[108] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 -[113] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[113] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[108] [Step Debug] -> - -[113] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[113] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1 -[113] [Step Debug] -> - -[102] Log opened at 2024-10-21 20:46:03.859654 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[108] [Step Debug] <- run -i 11 -[102] [Step Debug] <- run -i 6 -[113] [Step Debug] <- run -i 11 -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:46:04.426288 - -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:46:04.812952 - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:46:04.942655 - -[118] Log opened at 2024-10-21 20:46:04.982657 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[118] [Step Debug] -> - -[118] [Step Debug] <- run -i 11 -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:46:06.040345 - -[108] Log opened at 2024-10-21 20:46:06.068114 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[108] [Step Debug] -> - -[118] Log opened at 2024-10-21 20:46:06.129009 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[118] [Step Debug] -> - -[113] Log opened at 2024-10-21 20:46:06.146074 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[113] [Step Debug] -> - -[108] [Step Debug] <- run -i 11 -[118] [Step Debug] <- run -i 6 -[113] [Step Debug] <- run -i 6 -[102] Log opened at 2024-10-21 20:46:06.185593 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 9 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:46:19.876930 - -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:46:35.105257 - -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:46:35.328999 - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:46:51.527118 - -[110] Log opened at 2024-10-21 20:47:40.265517 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 12 -[110] [Step Debug] -> - -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:47:41.555564 - -[110] Log opened at 2024-10-21 20:47:41.692371 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 12 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:47:41.876122 - -[112] Log opened at 2024-10-21 20:47:42.234654 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[112] [Step Debug] -> - -[110] Log opened at 2024-10-21 20:47:42.258634 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] Log opened at 2024-10-21 20:47:42.261361 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[110] [Step Debug] <- run -i 6 -[116] [Step Debug] <- run -i 6 -[112] [Step Debug] <- run -i 12 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:47:42.800085 - -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:47:42.937015 - -[116] Log opened at 2024-10-21 20:47:42.984597 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[116] [Step Debug] -> - -[116] [Step Debug] <- run -i 12 -[112] [Step Debug] -> - -[112] Log closed at 2024-10-21 20:47:43.436888 - -[116] [Step Debug] -> - -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:47:44.126669 - -[112] Log opened at 2024-10-21 20:47:44.164243 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[112] [Step Debug] -> - -[116] Log opened at 2024-10-21 20:47:44.238505 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[116] [Step Debug] -> - -[116] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[116] [Step Debug] -> - -[110] Log opened at 2024-10-21 20:47:44.255827 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[112] [Step Debug] <- run -i 12 -[116] [Step Debug] <- run -i 6 -[110] [Step Debug] -> - -[110] [Step Debug] <- run -i 6 -[114] Log opened at 2024-10-21 20:47:44.356730 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[114] [Step Debug] -> - -[114] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[114] [Step Debug] -> - -[116] [Step Debug] -> - -[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[116] [Step Debug] -> - -[116] Log closed at 2024-10-21 20:48:00.297082 - -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[110] [Step Debug] -> - -[110] Log closed at 2024-10-21 20:48:16.075360 - -[112] [Step Debug] -> - -[112] Log closed at 2024-10-21 20:48:16.306951 - -[114] [Step Debug] <- stop -i 12 -[114] [Step Debug] -> - -[113] Log opened at 2024-10-21 20:48:37.923400 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[113] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 12 -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:48:56.725197 - -[118] Log opened at 2024-10-21 20:49:04.462693 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[118] [Step Debug] -> - -[118] [Step Debug] <- run -i 12 -[118] [Step Debug] -> - -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:49:05.988796 - -[118] Log opened at 2024-10-21 20:49:06.179412 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[118] [Step Debug] -> - -[118] [Step Debug] <- run -i 12 -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:49:06.361387 - -[108] Log opened at 2024-10-21 20:49:06.825160 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[118] Log opened at 2024-10-21 20:49:06.835391 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[102] Log opened at 2024-10-21 20:49:06.836628 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[102] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[118] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] -> - -[108] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[108] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 -[102] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 11 -n extended_properties -v 1 -[118] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 11 -[108] [Step Debug] <- run -i 12 -[118] [Step Debug] <- run -i 12 -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:49:07.444068 - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:49:07.598656 - -[102] Log opened at 2024-10-21 20:49:07.647769 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 12 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:49:08.068993 - -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:49:08.741155 - -[108] Log opened at 2024-10-21 20:49:08.788790 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[108] [Step Debug] -> - -[102] Log opened at 2024-10-21 20:49:08.858084 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[118] Log opened at 2024-10-21 20:49:08.876167 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[118] [Step Debug] -> - -[108] [Step Debug] <- run -i 12 -[102] [Step Debug] <- run -i 6 -[118] [Step Debug] <- run -i 6 -[107] Log opened at 2024-10-21 20:49:08.923093 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[107] [Step Debug] -> - -[107] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[107] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:49:23.271644 - -[107] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[107] [Step Debug] -> - -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:49:48.513739 - -[110] Log opened at 2024-10-21 20:49:50.659253 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[110] [Step Debug] -> - -[110] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[110] [Step Debug] -> - -[112] Log opened at 2024-10-21 20:50:06.904538 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[112] [Step Debug] -> - -[112] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[112] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:50:07.715578 - -[107] [Step Debug] <- stop -i 13 -[110] [Step Debug] <- stop -i 13 -[107] [Step Debug] -> - -[110] [Step Debug] -> - -[112] [Step Debug] <- stop -i 13 -[112] [Step Debug] -> - -[102] Log opened at 2024-10-21 20:50:14.767882 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[102] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 13 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:50:17.088526 - -[102] Log opened at 2024-10-21 20:50:17.376517 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[102] [Step Debug] -> - -[102] [Step Debug] <- run -i 13 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:50:17.620750 - -[118] Log opened at 2024-10-21 20:50:18.119380 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[118] [Step Debug] -> - -[118] [Step Debug] <- run -i 13 -[102] Log opened at 2024-10-21 20:50:18.305111 -[113] Log opened at 2024-10-21 20:50:18.305113 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[113] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[102] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[113] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[113] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[102] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[102] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[102] [Step Debug] -> - -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[113] [Step Debug] -> - -[113] [Step Debug] <- run -i 15 -[102] [Step Debug] <- run -i 15 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:50:18.894660 - -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:50:19.972604 - -[113] [Step Debug] -> - -[113] Log closed at 2024-10-21 20:50:20.326158 - -[108] Log opened at 2024-10-21 20:50:20.369823 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[108] [Step Debug] -> - -[108] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[108] [Step Debug] -> - -[108] [Step Debug] <- run -i 13 -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] [Step Debug] -> - -[108] Log closed at 2024-10-21 20:50:22.616245 - -[118] Log opened at 2024-10-21 20:50:22.651817 -[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' -[118] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[118] [Step Debug] -> - -[118] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[118] [Step Debug] -> - -[108] Log opened at 2024-10-21 20:50:22.729056 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[108] [Step Debug] -> - -[108] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[108] [Step Debug] -> - -[102] Log opened at 2024-10-21 20:50:22.745148 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[102] [Step Debug] -> - -[102] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[102] [Step Debug] -> - -[108] [Step Debug] <- run -i 6 -[118] [Step Debug] <- run -i 13 -[102] [Step Debug] <- run -i 6 -[113] Log opened at 2024-10-21 20:50:22.792990 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[113] [Step Debug] -> - -[113] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[113] [Step Debug] -> - -[102] [Step Debug] -> - -[102] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[102] [Step Debug] -> - -[102] Log closed at 2024-10-21 20:51:01.608001 - -[113] [Step Debug] <- stop -i 13 -[113] [Step Debug] -> - -[119] Log opened at 2024-10-21 20:51:12.911145 -[119] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.119' -[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[118] [Step Debug] -> - -[118] [Step Debug] <- stop -i 14 -[118] [Step Debug] -> - -[118] Log closed at 2024-10-21 20:51:26.802550 - -[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[119] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[119] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[119] Log closed at 2024-10-21 20:51:27.397146 - -[24] Log opened at 2024-10-22 06:56:44.070376 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 13 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 06:56:45.893634 - -[23] Log opened at 2024-10-22 06:56:46.033807 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 13 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 06:56:46.222321 - -[23] Log opened at 2024-10-22 06:56:46.533100 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[26] Log opened at 2024-10-22 06:56:46.542975 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 06:56:46.544443 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 -[22] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 7 -n extended_properties -v 1 -[26] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 6 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[26] [Step Debug] -> - -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[26] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[26] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 12 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[23] [Step Debug] <- run -i 13 -[26] [Step Debug] <- run -i 13 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 06:56:47.106185 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 06:56:48.872375 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 06:56:49.216351 - -[26] Log opened at 2024-10-22 06:56:49.263808 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 13 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 06:56:51.503691 - -[26] Log opened at 2024-10-22 06:56:51.535770 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[23] Log opened at 2024-10-22 06:56:51.689356 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[22] Log opened at 2024-10-22 06:56:51.710291 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[27] Log opened at 2024-10-22 06:56:51.771531 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[23] [Step Debug] <- run -i 6 -[22] [Step Debug] <- run -i 6 -[26] [Step Debug] <- run -i 13 -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[27] [Step Debug] -> - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 06:56:52.835655 - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 06:57:31.222881 - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 06:58:09.033798 - -[27] [Step Debug] <- stop -i 13 -[27] [Step Debug] -> - -[25] Log opened at 2024-10-22 07:00:16.026761 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log opened at 2024-10-22 07:00:39.511915 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 14 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:00:55.333404 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 14 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:00:56.832687 - -[24] Log opened at 2024-10-22 07:00:57.007678 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 14 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:00:57.186358 - -[29] Log opened at 2024-10-22 07:00:57.406724 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 14 -[24] Log opened at 2024-10-22 07:00:57.617483 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[30] Log opened at 2024-10-22 07:00:57.657805 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- run -i 6 -[24] [Step Debug] <- run -i 14 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:00:58.130214 - -[29] [Step Debug] -> - -[29] Log closed at 2024-10-22 07:00:59.176718 - -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[30] [Step Debug] -> - -[30] Log closed at 2024-10-22 07:00:59.502178 - -[29] Log opened at 2024-10-22 07:00:59.549119 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 14 -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] Log closed at 2024-10-22 07:01:01.800835 - -[29] Log opened at 2024-10-22 07:01:01.836576 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[30] Log opened at 2024-10-22 07:01:01.908140 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[29] [Step Debug] <- run -i 14 -[30] [Step Debug] <- run -i 6 -[24] Log opened at 2024-10-22 07:01:01.930685 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[26] Log opened at 2024-10-22 07:01:01.972516 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[26] [Step Debug] -> - -[24] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[26] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:01:34.530579 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[30] [Step Debug] -> - -[30] Log closed at 2024-10-22 07:01:41.336853 - -[29] [Step Debug] -> - -[29] Log closed at 2024-10-22 07:01:41.815546 - -[25] Log opened at 2024-10-22 07:02:31.047060 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[22] [Step Debug] <- run -i 14 -[25] [Step Debug] <- run -i 14 -[26] [Step Debug] <- run -i 14 -[24] [Step Debug] <- run -i 14 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 15 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 16 -n "$t" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 20 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- stop -i 22 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:02:35.109883 - -[22] [Step Debug] -> - -[22] [Step Debug] <- stop -i 15 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:02:35.498263 - -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- stop -i 15 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:02:35.708581 - -[25] Log opened at 2024-10-22 07:02:35.873438 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] -> - -[26] [Step Debug] <- stop -i 15 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:02:35.978196 - -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 07:02:36.543662 - -[31] Log opened at 2024-10-22 07:02:36.796178 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-22 07:02:36.800757 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 07:02:36.814746 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-22 07:02:36.990493 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:02:37.779167 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:02:37.825933 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-22 07:02:39.076363 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 07:02:39.840217 - -[32] Log opened at 2024-10-22 07:02:42.546412 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:02:44.186726 - -[32] Log opened at 2024-10-22 07:02:44.315843 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:02:44.969502 - -[32] Log opened at 2024-10-22 07:02:45.185099 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-10-22 07:02:45.195586 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] Log opened at 2024-10-22 07:02:45.215450 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-22 07:02:45.354429 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-22 07:02:46.191208 - -[29] Log closed at 2024-10-22 07:02:46.194733 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:02:47.452817 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 07:02:48.208869 - -[32] Log opened at 2024-10-22 07:02:51.770457 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:02:54.028409 - -[32] Log opened at 2024-10-22 07:02:54.155537 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:02:54.803192 - -[32] Log opened at 2024-10-22 07:02:55.061120 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 07:02:55.214466 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-22 07:02:55.218605 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:02:56.190264 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:02:57.441795 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 07:02:57.981020 - -[22] Log opened at 2024-10-22 07:02:58.023537 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:03:00.680112 - -[22] Log opened at 2024-10-22 07:03:00.711519 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-22 07:03:00.768910 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-22 07:03:00.782770 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 07:03:00.807532 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:03:02.339713 - -[31] Log opened at 2024-10-22 07:03:18.288191 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log opened at 2024-10-22 07:03:30.248940 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 15 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 15 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:03:41.600612 - -[28] Log opened at 2024-10-22 07:03:53.131249 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 15 -[29] Log opened at 2024-10-22 07:04:14.101393 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 15 -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:04:19.593171 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] -> - -[25] [Step Debug] <- stop -i 16 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:04:58.652500 - -[29] [Step Debug] -> - -[29] [Step Debug] <- stop -i 16 -[29] [Step Debug] -> - -[29] Log closed at 2024-10-22 07:04:58.659257 - -[28] [Step Debug] -> - -[28] [Step Debug] <- stop -i 16 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:04:58.674958 - -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-22 07:04:59.296506 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:04:59.758570 - -[22] Log opened at 2024-10-22 07:05:07.852160 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:05:09.441855 - -[22] Log opened at 2024-10-22 07:05:09.516101 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:05:10.169219 - -[23] Log opened at 2024-10-22 07:05:10.251225 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 07:05:10.266565 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:05:11.224899 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:05:12.502524 - -[22] Log opened at 2024-10-22 07:05:15.886003 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 15 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:05:17.043545 - -[23] Log opened at 2024-10-22 07:05:17.111479 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 15 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:05:17.351960 - -[23] Log opened at 2024-10-22 07:05:17.468363 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:05:17.478240 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[23] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[23] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[22] [Step Debug] <- run -i 15 -[23] [Step Debug] <- run -i 15 -[25] Log opened at 2024-10-22 07:05:17.594394 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 6 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:05:18.007783 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:05:19.220766 - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:05:19.786286 - -[26] Log opened at 2024-10-22 07:05:25.510015 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 15 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:05:27.414701 - -[26] Log opened at 2024-10-22 07:05:27.485420 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 15 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:05:27.672863 - -[27] Log opened at 2024-10-22 07:05:27.809795 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[28] Log opened at 2024-10-22 07:05:27.816940 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[24] Log opened at 2024-10-22 07:05:27.823117 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[27] [Step Debug] -> - -[24] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[24] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[27] [Step Debug] -> - -[24] [Step Debug] -> - -[28] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[28] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 6 -n max_data -v 8192 -[24] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[28] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[27] [Step Debug] -> - -[28] [Step Debug] -> - -[24] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[28] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[24] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[24] [Step Debug] -> - -[27] [Step Debug] <- run -i 15 -[24] [Step Debug] <- run -i 15 -[28] [Step Debug] <- run -i 15 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:05:28.366023 - -[27] [Step Debug] -> - -[27] Log closed at 2024-10-22 07:05:29.581659 - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:05:29.931224 - -[28] Log opened at 2024-10-22 07:05:29.979874 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 15 -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:05:32.177142 - -[28] Log opened at 2024-10-22 07:05:32.202917 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[27] Log opened at 2024-10-22 07:05:32.270689 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[24] Log opened at 2024-10-22 07:05:32.287189 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 6 -[28] [Step Debug] <- run -i 15 -[27] [Step Debug] <- run -i 6 -[26] Log opened at 2024-10-22 07:05:32.317987 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[26] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:05:44.831626 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[28] [Step Debug] -> - -[27] [Step Debug] -> - -[27] Log closed at 2024-10-22 07:05:57.983862 - -[28] Log closed at 2024-10-22 07:05:57.986035 - -[22] Log opened at 2024-10-22 07:06:10.565649 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 15 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:06:12.407606 - -[22] Log opened at 2024-10-22 07:06:12.498634 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 15 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:06:12.670299 - -[23] Log opened at 2024-10-22 07:06:12.838091 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] Log opened at 2024-10-22 07:06:12.843851 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[23] [Step Debug] -> - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:06:12.847803 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[23] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[22] [Step Debug] -> - -[23] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[22] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[23] [Step Debug] -> - -[24] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[23] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[23] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[22] [Step Debug] -> - -[23] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[23] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[23] [Step Debug] -> - -[22] [Step Debug] <- run -i 17 -[23] [Step Debug] <- run -i 17 -[24] [Step Debug] <- run -i 17 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:06:13.364084 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:06:14.549472 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:06:14.893230 - -[24] Log opened at 2024-10-22 07:06:14.933383 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 15 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:06:17.043547 - -[24] Log opened at 2024-10-22 07:06:17.073487 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 15 -[23] Log opened at 2024-10-22 07:06:17.144048 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:06:17.163644 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[23] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 6 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 7 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 8 -n notify_ok -v 1 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[23] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1760 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[22] [Step Debug] -> - -[25] Log opened at 2024-10-22 07:06:17.225668 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[22] [Step Debug] <- run -i 15 -[23] [Step Debug] <- run -i 15 -[25] [Step Debug] <- run -i 6 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:06:18.253153 - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 16 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 17 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 19 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 21 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 23 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 24 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 25 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 27 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 29 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 31 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 32 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 33 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 35 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 37 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 38 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 39 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 41 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 42 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 43 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 44 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 45 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 46 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 47 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 48 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 49 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 50 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 51 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 52 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 53 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 55 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 56 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 57 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 58 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 59 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 61 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 62 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 63 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 64 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 65 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 66 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 67 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 68 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 70 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 72 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 73 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 74 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 75 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 76 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 77 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 78 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 79 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 80 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 81 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 82 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 83 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 84 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 85 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 86 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 87 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 88 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 89 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 90 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 91 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 92 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 93 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 94 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 95 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 96 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 97 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 98 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 99 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 100 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 101 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 102 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 103 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 104 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 105 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 106 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 107 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 108 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 109 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 110 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 111 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 112 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 113 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 114 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 115 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 116 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 117 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 118 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 119 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 120 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 121 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 122 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 123 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_remove -i 124 -d 220028 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 125 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 126 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 127 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 129 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 130 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 131 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 132 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 133 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 134 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 135 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 136 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 137 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 138 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 139 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 140 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- eval -i 141 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnM2U3ZmY1MWIxYTdjZDc4NjJlYmNmYTY3MGNmZGEyOGRhNDNhYjIwZmZkZGJlOTEzNmU0NDVmODgzMmJmNDc2OSddPVByZXN1cHVlc3RvU2VydmljZTo6Z2V0QW5jaG9Ub3RhbEV4dGVyaW9yZXM= -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 142 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 143 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 144 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 145 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 146 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 147 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 148 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 149 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 150 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 151 -n "$datosPedido->altoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 152 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 153 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 154 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 155 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 156 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 157 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 158 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 159 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_remove -i 160 -d 220033 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 161 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 162 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 163 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 164 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 165 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 166 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 167 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 168 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 169 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 170 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 171 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 172 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 173 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 174 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 175 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 176 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 177 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 178 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 179 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 180 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 181 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 182 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 183 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 184 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 185 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 186 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 187 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 188 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 189 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 190 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 191 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 192 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 193 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 194 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 195 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 196 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 197 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 198 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 199 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 200 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 201 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 202 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 203 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 204 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 205 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 206 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 207 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 208 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 209 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 210 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 211 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 212 -n "$t" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 213 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 214 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 215 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 216 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 217 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 218 -n "$datosPedido" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 219 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 220 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 221 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 222 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 223 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 224 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 225 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 226 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 227 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 228 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 229 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 230 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 231 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 232 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 233 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 234 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 235 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 236 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 237 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 238 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 239 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 240 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 241 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_into -i 242 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 243 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 244 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 245 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 246 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 247 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 248 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 249 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 250 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 251 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 252 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 253 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 254 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 255 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 256 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 257 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 258 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 259 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 260 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 261 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 262 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 263 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 264 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 265 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 266 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 267 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 268 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 269 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 270 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 271 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 272 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 273 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 274 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 275 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 276 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 277 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 278 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 279 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 280 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 281 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 282 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 283 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 284 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 285 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 286 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 287 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 288 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 289 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 290 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 291 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 292 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 293 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 294 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 295 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 296 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 297 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 298 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 299 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 300 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 301 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 302 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 303 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 304 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 305 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 306 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 307 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 308 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 309 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 310 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 311 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 312 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 313 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 314 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 315 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 316 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 317 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 318 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 319 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 320 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 321 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 322 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 323 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 324 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 325 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 326 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 327 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 328 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 329 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 330 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 331 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 332 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 333 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 334 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 335 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 336 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 337 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 338 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 339 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 340 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 341 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 342 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 343 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 344 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 345 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 346 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 347 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 348 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 349 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 350 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 351 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 352 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 353 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 354 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 355 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 356 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 357 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 358 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 359 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 360 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 361 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 362 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 363 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 364 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 365 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 366 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 367 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 368 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 369 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 370 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 371 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 372 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 373 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 374 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 375 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 376 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 377 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 378 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 379 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 380 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 381 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 382 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 383 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 384 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 385 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 386 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 387 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 388 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 389 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 390 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 391 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 392 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 393 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 394 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 395 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 396 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 397 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 398 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 399 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 400 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 401 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 402 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 403 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 404 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 405 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 406 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 407 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 408 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 409 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 410 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 411 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 412 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 413 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 414 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 415 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 416 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 417 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 418 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 419 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 420 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 421 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 422 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 423 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 424 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 425 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 426 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 427 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 428 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 429 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 430 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 431 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 432 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 433 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 434 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 435 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 436 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 437 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 438 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 439 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 440 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 441 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 442 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 443 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 444 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 445 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 446 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 447 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 448 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 449 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 450 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 451 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 452 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 453 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 454 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 455 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 456 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 457 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 458 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 459 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 460 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 461 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 462 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 463 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 464 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 465 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 466 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 467 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 468 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 469 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 470 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 471 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 472 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 473 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 474 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 475 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 476 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 477 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 478 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 479 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 480 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 481 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 482 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 483 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 484 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 485 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 486 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 487 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 488 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 489 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 490 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 491 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 492 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 493 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 494 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 495 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 496 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 497 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 498 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 499 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 500 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 501 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 502 -n "$data['papelInteriorDiferente']" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 503 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 504 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 505 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 506 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 507 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 508 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 509 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 510 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 511 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 512 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 513 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 514 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 515 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 516 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 517 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 518 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 519 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 520 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 521 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 522 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 523 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 524 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 525 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 526 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 527 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 528 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 529 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 530 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 531 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 532 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 533 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 534 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 535 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 536 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 537 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 538 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 539 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 540 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 541 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 542 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 543 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 544 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 545 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 546 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 547 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 548 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 549 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 550 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 551 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 552 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 553 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 554 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 555 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 556 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 557 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 558 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 559 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 560 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 561 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 562 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 563 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 564 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 565 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 566 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 567 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 568 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 569 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 570 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 571 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 572 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 573 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 574 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 575 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 576 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 577 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 578 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 579 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 580 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 581 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 582 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 583 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 584 -n "$return_data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 585 -n "$return_data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- step_over -i 586 -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 587 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 588 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 589 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 590 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 591 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 592 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 593 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 594 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:10:15.560416 - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_remove -i 16 -d 220028 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_remove -i 17 -d 220033 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 18 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 19 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 21 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 22 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 23 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 25 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 26 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 27 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 29 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 30 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 31 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 33 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 34 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 35 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 37 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 38 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 39 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[22] [Step Debug] -> - -[27] Log opened at 2024-10-22 07:10:43.352359 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 256 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:11:11.029027 - -[22] Log opened at 2024-10-22 07:11:25.093062 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:11:26.949729 - -[22] Log opened at 2024-10-22 07:11:27.070715 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:11:27.253643 - -[23] Log opened at 2024-10-22 07:11:27.413991 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:11:27.426008 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[23] [Step Debug] -> - -[22] [Step Debug] -> - -[24] Log opened at 2024-10-22 07:11:27.430216 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[24] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[24] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Parse error" -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[24] [Step Debug] -> - -[23] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Unknown error" -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[23] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 6 -n max_data -v 8192 -[24] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 12 -n extended_properties -v 1 -[22] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[24] [Step Debug] -> - -[23] [Step Debug] <- run -i 13 -[22] [Step Debug] <- run -i 13 -[24] [Step Debug] <- run -i 10 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:11:27.930129 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:11:29.209886 - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:11:29.567245 - -[23] Log opened at 2024-10-22 07:11:29.609082 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 13 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:11:31.756728 - -[23] Log opened at 2024-10-22 07:11:31.789987 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 13 -[24] Log opened at 2024-10-22 07:11:31.860973 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:11:31.881905 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[22] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[24] [Step Debug] -> - -[25] Log opened at 2024-10-22 07:11:31.918530 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[24] [Step Debug] -> - -[22] [Step Debug] -> - -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[25] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[24] [Step Debug] -> - -[22] [Step Debug] -> - -[25] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Fatal error" -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[25] [Step Debug] -> - -[22] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[24] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Parse error" -[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[25] [Step Debug] -> - -[22] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 359 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 361 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 139 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 9 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 10 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 11 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 13 -n extended_properties -v 1 -[25] [Step Debug] -> - -[24] [Step Debug] <- run -i 14 -[22] [Step Debug] <- run -i 14 -[25] [Step Debug] <- run -i 14 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:11:32.880712 - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 15 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 16 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 18 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 19 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 20 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 22 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 23 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 24 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 26 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 27 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 28 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 29 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_remove -i 30 -d 220025 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 31 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 32 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 33 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 35 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 37 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 38 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 39 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 40 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 41 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 43 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 44 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 45 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 46 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 47 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:12:25.832109 - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_remove -i 15 -d 220025 -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 16 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 17 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 18 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 19 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 20 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 21 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 22 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 23 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 24 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 25 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 27 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 28 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 29 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 30 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 31 -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 32 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 33 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 35 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 36 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 37 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 38 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_remove -i 39 -d 220025 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_remove -i 40 -d 240007 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_remove -i 41 -d 240005 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 42 -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 43 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 44 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 46 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 48 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 50 -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 51 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 52 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 54 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 56 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 58 -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 59 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 60 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 61 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 62 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 64 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 66 -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 67 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 68 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 70 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 71 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 72 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 73 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 74 -[24] [Step Debug] -> - -[24] [Step Debug] <- stack_get -i 75 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 76 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 77 -n "$data" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 78 -n "$uso" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- property_get -i 79 -n "$datos_papel" -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_names -i 80 -d 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- context_get -i 81 -d 0 -c 0 -[24] [Step Debug] -> - -[24] [Step Debug] <- stop -i 82 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:13:43.463086 - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_remove -i 15 -d 220025 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_remove -i 16 -d 220025 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_remove -i 17 -d 250007 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_remove -i 18 -d 250005 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_remove -i 19 -d 250007 -[25] [Step Debug] -> - -[25] [Step Debug] <- stop -i 20 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:13:43.952211 - -[27] Log opened at 2024-10-22 07:13:49.816604 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 10 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] Log closed at 2024-10-22 07:13:51.667554 - -[27] Log opened at 2024-10-22 07:13:51.866678 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 10 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-22 07:13:52.040888 - -[22] Log opened at 2024-10-22 07:13:52.591403 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[29] Log opened at 2024-10-22 07:13:52.603631 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[23] Log opened at 2024-10-22 07:13:52.608805 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[29] [Step Debug] -> - -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[29] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[29] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[22] [Step Debug] <- run -i 10 -[29] [Step Debug] <- run -i 9 -[23] [Step Debug] <- run -i 6 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[29] [Step Debug] -> - -[29] Log closed at 2024-10-22 07:13:53.129448 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:13:54.441369 - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:13:54.782123 - -[22] Log opened at 2024-10-22 07:13:54.826922 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 10 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:13:56.980130 - -[22] Log opened at 2024-10-22 07:13:57.007382 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 10 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:13:58.192185 - -[26] Log opened at 2024-10-22 07:15:27.168239 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 10 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:15:29.050929 - -[26] Log opened at 2024-10-22 07:15:29.203563 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 10 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:15:29.344513 - -[31] Log opened at 2024-10-22 07:15:29.609627 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[31] [Step Debug] -> - -[31] [Step Debug] <- run -i 10 -[33] Log opened at 2024-10-22 07:15:29.778975 -[32] Log opened at 2024-10-22 07:15:29.778974 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[32] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[33] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[32] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[32] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[32] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[32] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[33] [Step Debug] <- run -i 10 -[32] [Step Debug] <- run -i 10 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 07:15:30.308288 - -[31] [Step Debug] -> - -[31] Log closed at 2024-10-22 07:15:31.405506 - -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 07:15:31.765432 - -[33] Log opened at 2024-10-22 07:15:31.819149 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 10 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 07:15:34.151413 - -[29] Log opened at 2024-10-22 07:15:50.735910 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 10 -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] Log closed at 2024-10-22 07:15:52.617415 - -[29] Log opened at 2024-10-22 07:15:52.829161 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 10 -[29] [Step Debug] -> - -[29] Log closed at 2024-10-22 07:15:52.993982 - -[28] Log opened at 2024-10-22 07:15:53.414263 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 10 -[22] Log opened at 2024-10-22 07:15:53.579845 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-10-22 07:15:53.582071 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[22] [Step Debug] <- run -i 10 -[27] [Step Debug] <- run -i 10 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:15:54.094993 - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:15:55.210823 - -[27] [Step Debug] -> - -[27] Log closed at 2024-10-22 07:15:55.593562 - -[23] Log opened at 2024-10-22 07:15:55.633153 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 10 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:15:57.834107 - -[28] Log opened at 2024-10-22 07:15:57.867343 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 10 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:15:59.060764 - -[33] Log opened at 2024-10-22 07:16:54.959028 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 10 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 07:16:56.854186 - -[33] Log opened at 2024-10-22 07:16:57.087522 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 10 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 07:16:57.305509 - -[22] Log opened at 2024-10-22 07:16:57.865873 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[26] Log opened at 2024-10-22 07:16:57.887874 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-22 07:16:57.888525 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[26] [Step Debug] -> - -[22] [Step Debug] <- run -i 10 -[26] [Step Debug] <- run -i 6 -[34] [Step Debug] <- run -i 6 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[34] [Step Debug] -> - -[34] Log closed at 2024-10-22 07:16:58.379846 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:16:59.663191 - -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:17:00.043793 - -[23] Log opened at 2024-10-22 07:17:05.951550 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 10 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:17:08.214063 - -[23] Log opened at 2024-10-22 07:17:10.336334 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 10 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:17:11.543204 - -[28] Log opened at 2024-10-22 07:19:02.134406 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 10 -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:19:03.975732 - -[28] Log opened at 2024-10-22 07:19:04.168798 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 10 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:19:04.309388 - -[32] Log opened at 2024-10-22 07:19:04.621608 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 10 -[33] Log opened at 2024-10-22 07:19:04.938436 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-22 07:19:04.938979 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[35] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[35] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[35] [Step Debug] -> - -[33] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[35] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 10 -[35] [Step Debug] <- run -i 10 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 07:19:05.474224 - -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 07:19:06.488872 - -[35] [Step Debug] -> - -[35] Log closed at 2024-10-22 07:19:06.827917 - -[30] Log opened at 2024-10-22 07:20:07.517014 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[30] [Step Debug] -> - -[30] [Step Debug] <- run -i 10 -[30] [Step Debug] -> - -[30] [Step Debug] -> - -[30] Log closed at 2024-10-22 07:20:09.680153 - -[29] Log opened at 2024-10-22 07:23:16.315586 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:23:18.774120 - -[29] Log opened at 2024-10-22 07:23:18.971178 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:23:19.619547 - -[26] Log opened at 2024-10-22 07:23:20.015377 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-22 07:23:20.053989 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[28] Log opened at 2024-10-22 07:23:20.053989 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-22 07:23:21.077122 - -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 07:23:22.417688 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-22 07:23:22.979417 - -[23] Log opened at 2024-10-22 07:23:31.134249 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:23:33.973568 - -[23] Log opened at 2024-10-22 07:23:34.004618 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:23:35.646277 - -[29] Log opened at 2024-10-22 07:23:58.918786 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:24:01.286089 - -[29] Log opened at 2024-10-22 07:24:01.459101 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:24:02.123515 - -[34] Log opened at 2024-10-22 07:24:02.512230 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-22 07:24:02.607114 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 07:24:02.611529 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-22 07:24:03.606568 - -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-22 07:24:04.850129 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 07:24:05.393759 - -[33] Log opened at 2024-10-22 07:24:05.444655 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 07:24:08.121586 - -[34] Log opened at 2024-10-22 07:24:08.151958 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-22 07:24:09.759756 - -[23] Log opened at 2024-10-22 07:24:44.906903 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:24:47.323877 - -[23] Log opened at 2024-10-22 07:24:47.458358 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:24:48.101693 - -[22] Log opened at 2024-10-22 07:24:48.477618 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 07:24:48.482936 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 07:24:48.485381 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:24:49.480927 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:24:50.841099 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 07:24:51.381723 - -[22] Log opened at 2024-10-22 07:24:51.431891 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:24:54.089203 - -[22] Log opened at 2024-10-22 07:24:54.184011 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:24:55.865694 - -[29] Log opened at 2024-10-22 07:25:30.952482 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:25:33.304423 - -[29] Log opened at 2024-10-22 07:25:33.457545 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:25:34.108220 - -[32] Log opened at 2024-10-22 07:25:34.365016 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-10-22 07:25:34.555475 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log opened at 2024-10-22 07:25:34.566777 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-22 07:25:35.547952 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:25:36.836031 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 07:25:37.382416 - -[35] Log opened at 2024-10-22 07:25:37.424983 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-22 07:25:40.147074 - -[35] Log opened at 2024-10-22 07:25:40.265120 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-10-22 07:25:41.896581 - -[28] Log opened at 2024-10-22 07:26:25.885686 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-22 07:26:28.269402 - -[28] Log opened at 2024-10-22 07:26:28.532174 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-22 07:26:29.216118 - -[29] Log opened at 2024-10-22 07:26:29.616093 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 07:26:29.791749 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 07:26:29.812923 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 07:26:30.820589 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:26:32.093739 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:26:32.649238 - -[36] Log opened at 2024-10-22 07:26:32.698371 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 07:26:35.527174 - -[29] Log opened at 2024-10-22 07:26:35.569099 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-10-22 07:26:37.217558 - -[30] Log opened at 2024-10-22 07:26:45.823524 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 07:27:26.402564 - -[28] Log opened at 2024-10-22 07:28:27.880069 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 10 -[28] [Step Debug] -> - -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:28:29.681686 - -[28] Log opened at 2024-10-22 07:28:29.901987 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[28] [Step Debug] -> - -[28] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 10 -[28] [Step Debug] -> - -[28] Log closed at 2024-10-22 07:28:30.077237 - -[22] Log opened at 2024-10-22 07:28:30.652984 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[23] Log opened at 2024-10-22 07:28:30.718402 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[22] [Step Debug] <- run -i 10 -[23] [Step Debug] <- run -i 6 -[33] Log opened at 2024-10-22 07:28:30.736118 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:28:31.188200 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:28:32.615778 - -[23] Log opened at 2024-10-22 07:29:13.335900 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 10 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:29:15.225120 - -[23] Log opened at 2024-10-22 07:29:15.449048 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 10 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:29:15.617316 - -[24] Log opened at 2024-10-22 07:29:16.078553 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 10 -[27] Log opened at 2024-10-22 07:29:16.272982 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[22] Log opened at 2024-10-22 07:29:16.277330 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[27] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[27] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[27] [Step Debug] -> - -[22] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[27] [Step Debug] <- run -i 10 -[22] [Step Debug] <- run -i 10 -[27] [Step Debug] -> - -[27] Log closed at 2024-10-22 07:29:16.749177 - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:29:17.807763 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 07:29:18.151647 - -[26] Log opened at 2024-10-22 07:29:18.199286 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 10 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:29:20.331056 - -[24] Log opened at 2024-10-22 07:29:20.373030 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 10 -[26] Log opened at 2024-10-22 07:29:20.495181 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 10 -[26] [Step Debug] -> - -[26] [Step Debug] -> - -[26] [Step Debug] <- stack_get -i 11 -[26] [Step Debug] -> - -[26] [Step Debug] <- property_get -i 12 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- property_get -i 14 -n "$uso" -d 0 -c 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- context_names -i 16 -d 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 18 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:30:08.234102 - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:30:08.703487 - -[22] Log opened at 2024-10-22 07:46:42.597796 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] Log closed at 2024-10-22 07:46:42.598575 - -[22] Log opened at 2024-10-22 07:49:35.135062 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] Log closed at 2024-10-22 07:49:35.136065 - -[22] Log opened at 2024-10-22 07:50:46.434418 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:50:47.792471 - -[23] Log opened at 2024-10-22 07:50:47.953921 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:50:48.633321 - -[23] Log opened at 2024-10-22 07:50:48.833413 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-22 07:50:48.850021 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 07:50:49.825800 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:50:50.487380 - -[23] Log opened at 2024-10-22 07:50:53.930879 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:50:55.212074 - -[23] Log opened at 2024-10-22 07:50:55.296179 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:50:55.954736 - -[23] Log opened at 2024-10-22 07:50:56.098256 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-22 07:50:56.104041 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-22 07:50:56.204592 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 07:50:57.282273 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 07:50:57.961473 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 07:50:58.467101 - -[26] Log opened at 2024-10-22 07:51:06.334270 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 07:51:08.259870 - -[26] Log opened at 2024-10-22 07:51:08.410488 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 07:51:09.059533 - -[28] Log opened at 2024-10-22 07:51:09.377457 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 07:51:09.383602 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-22 07:51:09.385645 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:51:10.668268 - -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:51:11.011716 - -[22] Log opened at 2024-10-22 07:51:11.059639 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-22 07:51:11.642115 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:51:12.558008 - -[28] Log opened at 2024-10-22 07:51:12.585656 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 07:51:12.733932 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-22 07:51:13.772540 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:51:32.690001 - -[24] Log opened at 2024-10-22 07:51:40.155183 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 10 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:51:41.506898 - -[24] Log opened at 2024-10-22 07:51:41.599918 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 10 -[24] [Step Debug] -> - -[24] Log closed at 2024-10-22 07:51:41.776153 - -[23] Log opened at 2024-10-22 07:51:41.955682 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[25] Log opened at 2024-10-22 07:51:41.964160 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[33] Log opened at 2024-10-22 07:51:41.986380 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 6 -[25] [Step Debug] <- run -i 10 -[23] [Step Debug] <- run -i 10 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:51:42.451264 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:51:42.876670 - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 07:51:43.046916 - -[25] Log opened at 2024-10-22 07:51:43.087884 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 10 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:51:44.126688 - -[25] Log opened at 2024-10-22 07:51:44.156713 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 10 -[23] Log opened at 2024-10-22 07:51:44.273521 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 10 -[25] [Step Debug] -> - -[25] Log closed at 2024-10-22 07:51:44.783951 - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 11 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 12 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 14 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 16 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 18 -n "$tipo_impresion_id" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 19 -n "$cubierta" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 20 -n "$this->calcular_presupuesto" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 21 -n "$this->calcular_presupuesto" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 22 -n "$return_data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 23 -n "$return_data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 24 -n "$datos_guardas" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 25 -n "$return_data" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 26 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:52:57.652592 - -[26] Log opened at 2024-10-22 07:53:00.140634 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 07:53:01.078592 - -[32] Log opened at 2024-10-22 07:53:01.167740 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 07:53:02.085137 - -[28] Log opened at 2024-10-22 07:53:09.264285 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-10-22 07:53:10.199853 - -[22] Log opened at 2024-10-22 07:53:10.287073 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 07:53:11.208835 - -[24] Log opened at 2024-10-22 07:53:18.958862 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 07:53:19.943487 - -[30] Log opened at 2024-10-22 07:53:35.341048 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 07:53:37.168659 - -[30] Log opened at 2024-10-22 07:53:37.360948 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 07:53:38.015537 - -[31] Log opened at 2024-10-22 07:53:38.241294 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 07:53:38.262996 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 07:53:38.271537 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 07:53:39.264311 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-22 07:53:39.833900 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 07:53:40.178008 - -[33] Log opened at 2024-10-22 07:53:40.215955 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 07:53:41.899944 - -[33] Log opened at 2024-10-22 07:53:41.930358 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-10-22 07:53:42.025920 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 07:53:43.057106 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-22 07:53:58.862350 - -[23] Log opened at 2024-10-22 07:56:03.364716 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 10 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:56:04.638044 - -[26] Log opened at 2024-10-22 07:56:04.751098 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 10 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:56:04.878539 - -[26] Log opened at 2024-10-22 07:56:05.072371 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[23] Log opened at 2024-10-22 07:56:05.075297 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[26] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[32] Log opened at 2024-10-22 07:56:05.081235 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] -> - -[23] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[32] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[32] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[26] [Step Debug] -> - -[32] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" -[26] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[26] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 9 -n extended_properties -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 10 -[23] [Step Debug] <- run -i 10 -[26] [Step Debug] <- run -i 10 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 07:56:05.629625 - -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 07:56:05.749013 - -[32] Log opened at 2024-10-22 07:56:05.800535 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 10 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:56:06.165204 - -[32] [Step Debug] -> - -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 07:56:06.920200 - -[26] Log opened at 2024-10-22 07:56:06.946151 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 10 -[32] Log opened at 2024-10-22 07:56:07.061160 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 10 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 07:56:07.561897 - -[32] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- stack_get -i 11 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 12 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 14 -n "$uso" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 15 -n "$datos_papel" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_names -i 16 -d 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 18 -n "$return_data" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 19 -n "$return_data[\"errors\"]" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- step_over -i 20 -[32] [Step Debug] -> - -[32] [Step Debug] <- stack_get -i 21 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 22 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 24 -n "$uso" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 25 -n "$datos_papel" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_names -i 26 -d 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_get -i 27 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_names -i 28 -d 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 29 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 30 -n "$return_data['errors']->status" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 31 -n "$uso" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 32 -n "$datos_papel" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- step_over -i 34 -[32] [Step Debug] -> - -[32] [Step Debug] <- stack_get -i 35 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 36 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 37 -n "$return_data['errors']->status" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 38 -n "$uso" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 39 -n "$datos_papel" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_names -i 40 -d 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_get -i 41 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- step_over -i 42 -[32] [Step Debug] -> - -[32] [Step Debug] <- stack_get -i 43 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 44 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 45 -n "$return_data['errors']->status" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 46 -n "$uso" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 47 -n "$datos_papel" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_names -i 48 -d 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- step_over -i 50 -[32] [Step Debug] -> - -[32] [Step Debug] <- stack_get -i 51 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 52 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 53 -n "$return_data['errors']->status" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 54 -n "$uso" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_names -i 56 -d 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 58 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 -[32] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 59 -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 07:57:52.031604 - -[33] Log opened at 2024-10-22 08:00:36.424578 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 11 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:00:37.748050 - -[33] Log opened at 2024-10-22 08:00:37.961909 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 11 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:00:38.123244 - -[23] Log opened at 2024-10-22 08:00:38.567863 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 11 -[32] Log opened at 2024-10-22 08:00:38.724809 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[31] Log opened at 2024-10-22 08:00:38.730278 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[32] [Step Debug] -> - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[32] [Step Debug] -> - -[31] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[32] [Step Debug] -> - -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 -[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 -[32] [Step Debug] -> - -[31] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[32] [Step Debug] -> - -[31] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[31] [Step Debug] -> - -[32] [Step Debug] -> - -[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[31] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- run -i 11 -[31] [Step Debug] <- run -i 11 -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 08:00:39.294039 - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 08:00:39.703578 - -[31] [Step Debug] -> - -[31] Log closed at 2024-10-22 08:00:39.849336 - -[23] Log opened at 2024-10-22 08:00:39.888674 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 360 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 436 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 11 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- stop -i 12 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 08:00:40.971154 - -[23] Log opened at 2024-10-22 08:00:41.011601 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-22 08:00:41.121285 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:00:42.141111 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:00:56.546774 - -[22] Log opened at 2024-10-22 08:02:21.806304 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:02:23.537365 - -[22] Log opened at 2024-10-22 08:02:23.696366 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:02:24.339279 - -[24] Log opened at 2024-10-22 08:02:24.668269 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 08:02:24.670086 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-10-22 08:02:24.671583 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:02:25.686131 - -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] Log closed at 2024-10-22 08:02:26.018798 - -[30] Log opened at 2024-10-22 08:02:26.063974 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 08:02:26.717332 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:02:27.656496 - -[30] Log opened at 2024-10-22 08:02:27.684094 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-22 08:02:27.771082 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:02:28.813861 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 08:02:43.484856 - -[26] Log opened at 2024-10-22 08:03:42.199348 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:03:43.916715 - -[26] Log opened at 2024-10-22 08:03:44.074432 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:03:44.734993 - -[31] Log opened at 2024-10-22 08:03:45.111022 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 08:03:45.146503 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-22 08:03:45.150543 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:03:46.151904 - -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-22 08:03:46.847339 - -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 08:03:47.180614 - -[31] Log opened at 2024-10-22 08:03:47.227311 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-22 08:03:48.872683 - -[31] Log opened at 2024-10-22 08:03:48.900164 -[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 08:03:48.988208 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[31] Log closed at 2024-10-22 08:03:50.151902 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:04:06.282409 - -[23] Log opened at 2024-10-22 08:04:11.254755 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:04:26.371574 - -[30] Log opened at 2024-10-22 08:04:38.730133 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log opened at 2024-10-22 08:04:49.482566 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:04:54.385723 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:04:55.362043 - -[33] Log opened at 2024-10-22 08:04:55.546464 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:04:56.210964 - -[32] Log opened at 2024-10-22 08:04:56.545727 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 08:04:56.635814 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-22 08:04:56.636373 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:04:57.596503 - -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:04:58.184119 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:04:58.555489 - -[32] Log opened at 2024-10-22 08:04:58.603127 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:05:00.133295 - -[32] Log opened at 2024-10-22 08:05:00.159337 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 08:05:00.247825 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:05:01.288625 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:05:15.935672 - -[23] Log opened at 2024-10-22 08:05:45.080669 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:06:01.433339 - -[24] Log opened at 2024-10-22 08:06:14.175284 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 08:06:39.035992 - -[30] Log opened at 2024-10-22 08:15:06.325002 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:15:07.530064 - -[36] Log opened at 2024-10-22 08:15:07.612319 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 08:15:08.257615 - -[36] Log opened at 2024-10-22 08:15:08.367508 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 08:15:08.375709 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 08:15:08.489286 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:15:09.353594 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 08:15:09.965854 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:15:10.437143 - -[33] Log opened at 2024-10-22 08:15:14.524616 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:15:15.688355 - -[33] Log opened at 2024-10-22 08:15:17.539354 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:15:18.658374 - -[23] Log opened at 2024-10-22 08:18:57.226255 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:18:58.991716 - -[23] Log opened at 2024-10-22 08:18:59.206751 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:18:59.870789 - -[25] Log opened at 2024-10-22 08:19:00.352417 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-22 08:19:00.365091 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[30] Log opened at 2024-10-22 08:19:00.365109 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 08:19:01.361757 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:19:01.694665 - -[36] Log opened at 2024-10-22 08:19:01.741398 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 08:19:02.320948 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 08:19:03.457502 - -[25] Log opened at 2024-10-22 08:19:03.489048 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 08:19:03.590276 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 08:19:04.612943 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 08:19:21.391353 - -[26] Log opened at 2024-10-22 08:19:33.978731 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:19:50.933823 - -[32] Log opened at 2024-10-22 08:20:05.224291 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:20:24.013395 - -[22] Log opened at 2024-10-22 08:21:33.110553 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:21:34.808524 - -[22] Log opened at 2024-10-22 08:21:34.949765 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:21:35.589917 - -[37] Log opened at 2024-10-22 08:21:35.882618 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 08:21:36.015076 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 08:21:36.018313 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:21:36.993393 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 08:21:37.664502 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:21:38.015870 - -[23] Log opened at 2024-10-22 08:21:38.063420 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:21:39.582166 - -[33] Log opened at 2024-10-22 08:22:52.807133 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:22:54.532989 - -[33] Log opened at 2024-10-22 08:22:54.684566 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:22:55.331298 - -[24] Log opened at 2024-10-22 08:22:55.703065 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 08:22:55.715895 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-10-22 08:22:55.715895 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 08:22:56.727726 - -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 08:22:57.292968 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:22:57.630985 - -[25] Log opened at 2024-10-22 08:22:57.680714 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 08:22:59.208279 - -[26] Log opened at 2024-10-22 08:27:50.775347 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:27:52.463507 - -[26] Log opened at 2024-10-22 08:27:52.628527 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:27:53.272972 - -[32] Log opened at 2024-10-22 08:27:53.693795 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-22 08:27:53.699207 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[37] Log opened at 2024-10-22 08:27:53.699207 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 08:27:54.707659 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:27:55.040494 - -[37] Log opened at 2024-10-22 08:27:55.085463 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:27:55.680030 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 08:27:56.574308 - -[22] Log opened at 2024-10-22 08:31:20.589734 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:31:22.291433 - -[22] Log opened at 2024-10-22 08:31:22.466475 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:31:23.107080 - -[23] Log opened at 2024-10-22 08:31:23.435792 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 08:31:23.471328 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 08:31:23.474618 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:31:24.446257 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:31:24.775397 - -[33] Log opened at 2024-10-22 08:31:24.825086 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:31:25.428894 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:31:26.288622 - -[30] Log opened at 2024-10-22 08:35:06.057842 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:35:07.770319 - -[30] Log opened at 2024-10-22 08:35:07.964080 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:35:08.622864 - -[25] Log opened at 2024-10-22 08:35:09.021095 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 08:35:09.034816 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 08:35:09.041652 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 08:35:10.146208 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] Log closed at 2024-10-22 08:35:10.888847 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:35:11.239101 - -[36] Log opened at 2024-10-22 08:35:11.285499 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 08:35:12.869679 - -[32] Log opened at 2024-10-22 08:35:19.224370 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:35:20.933951 - -[32] Log opened at 2024-10-22 08:35:21.189890 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:35:21.854926 - -[22] Log opened at 2024-10-22 08:35:22.219371 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 08:35:22.320860 -[37] Log opened at 2024-10-22 08:35:22.320858 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:35:23.338694 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:35:23.969791 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 08:35:24.329845 - -[24] Log opened at 2024-10-22 08:35:24.381699 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 08:35:25.960386 - -[30] Log opened at 2024-10-22 08:44:04.445499 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 08:44:20.085191 - -[26] Log opened at 2024-10-22 08:46:14.133001 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:46:15.811929 - -[26] Log opened at 2024-10-22 08:46:15.973261 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:46:16.633336 - -[38] Log opened at 2024-10-22 08:46:17.060351 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] Log opened at 2024-10-22 08:46:17.076677 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] Log opened at 2024-10-22 08:46:17.118807 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:46:18.089554 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 08:46:18.715498 - -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 08:46:19.084208 - -[32] Log opened at 2024-10-22 08:46:19.126650 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:46:20.687530 - -[32] Log opened at 2024-10-22 08:46:20.801615 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] Log closed at 2024-10-22 08:46:35.447602 - -[33] Log opened at 2024-10-22 08:50:58.725951 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:50:59.873799 - -[33] Log opened at 2024-10-22 08:51:02.881054 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:51:04.033575 - -[33] Log opened at 2024-10-22 08:51:08.621546 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 08:51:25.822350 - -[23] Log opened at 2024-10-22 08:52:01.508911 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 08:52:03.416593 - -[22] Log opened at 2024-10-22 08:52:03.585734 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:52:04.235648 - -[37] Log opened at 2024-10-22 08:52:04.594392 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 08:52:04.626005 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-10-22 08:52:04.640037 -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:52:05.712889 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 08:52:06.350282 - -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] Log closed at 2024-10-22 08:52:06.700090 - -[22] Log opened at 2024-10-22 08:52:06.776005 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:52:08.278660 - -[22] Log opened at 2024-10-22 08:52:08.433491 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-22 08:52:08.517707 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 08:52:23.588344 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 08:52:23.982639 - -[38] Log opened at 2024-10-22 08:52:37.326730 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 08:52:43.149278 - -[33] Log opened at 2024-10-22 08:54:02.627377 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 11 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:54:04.032524 - -[33] Log opened at 2024-10-22 08:54:04.185114 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 11 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:54:04.305552 - -[23] Log opened at 2024-10-22 08:54:04.669999 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[30] Log opened at 2024-10-22 08:54:04.782579 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 08:54:04.782580 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[36] [Step Debug] -> - -[23] [Step Debug] <- run -i 11 -[30] [Step Debug] <- run -i 1 -[36] [Step Debug] <- run -i 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[36] [Step Debug] -> - -[36] Log closed at 2024-10-22 08:54:05.194925 - -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[30] [Step Debug] -> - -[30] Log closed at 2024-10-22 08:54:05.327496 - -[36] Log opened at 2024-10-22 08:54:05.369848 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 11 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 08:54:05.762062 - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] Log closed at 2024-10-22 08:54:06.320114 - -[36] Log opened at 2024-10-22 08:54:06.358573 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 11 -[23] Log opened at 2024-10-22 08:54:06.491361 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 11 -[36] [Step Debug] -> - -[36] Log closed at 2024-10-22 08:54:06.992710 - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] <- stack_get -i 12 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 13 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 14 -n "$return_data['errors']->status" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 15 -n "$uso" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_names -i 17 -d 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[23] [Step Debug] -> - -[23] [Step Debug] <- stop -i 19 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 08:54:11.552654 - -[22] Log opened at 2024-10-22 08:54:13.309867 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 11 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 08:54:14.528471 - -[37] Log opened at 2024-10-22 08:54:14.749385 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 11 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-22 08:54:14.969453 - -[26] Log opened at 2024-10-22 08:54:15.365588 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 11 -[37] Log opened at 2024-10-22 08:54:15.513305 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[33] Log opened at 2024-10-22 08:54:15.525615 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[37] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[37] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n max_data -v 8192 -[33] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[33] [Step Debug] <- feature_set -i 5 -n notify_ok -v 1 -[33] [Step Debug] -> - -[37] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" -[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[33] [Step Debug] -> - -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 10 -n extended_properties -v 1 -[33] [Step Debug] -> - -[37] [Step Debug] <- run -i 11 -[33] [Step Debug] <- run -i 11 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-22 08:54:16.013944 - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 08:54:16.483637 - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:54:16.663685 - -[38] Log opened at 2024-10-22 08:54:16.702264 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 11 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] Log closed at 2024-10-22 08:54:17.619523 - -[26] Log opened at 2024-10-22 08:54:17.651993 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 11 -[38] Log opened at 2024-10-22 08:54:17.723053 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 11 -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 08:54:18.257679 - -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 12 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 13 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 14 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 15 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 17 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 19 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-22 08:54:37.271132 - -[38] Log opened at 2024-10-22 08:54:41.881322 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 11 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 12 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 13 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 14 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 15 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 16 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 17 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 19 -n "$reqData" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 20 -n "$tipo_impresion_id" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_into -i 21 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 22 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 27 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1452 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 30 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 31 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 32 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 33 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 34 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 35 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 36 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 37 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 38 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 39 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 40 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 41 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 42 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 43 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 44 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 45 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 46 -n "$interior" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 47 -d 380016 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 48 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1582 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 49 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 50 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 51 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 52 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 53 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 54 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 55 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 56 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 58 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 59 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 60 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 61 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 62 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 63 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 64 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 66 -n "$cubierta" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 67 -d 380017 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 68 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1656 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 69 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 70 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 71 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 72 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 73 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 74 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 75 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 76 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 77 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 78 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 79 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 80 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 81 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 82 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 83 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 84 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 85 -d 380018 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 86 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1671 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 87 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 88 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 89 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 90 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 91 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 92 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 93 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 94 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 95 -d 380019 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 96 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1743 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 97 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 98 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 99 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 100 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 101 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 102 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 103 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 104 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 105 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 106 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 107 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 108 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 109 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 110 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 111 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 112 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_remove -i 113 -d 380020 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 114 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 115 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 116 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 117 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 118 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 119 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 120 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 121 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 122 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 123 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 124 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 125 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 126 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 127 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 128 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 129 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 130 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 131 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 132 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 133 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 134 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 135 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 136 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 137 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 138 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 139 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 140 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 141 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 142 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 143 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 144 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 145 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 146 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 147 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 148 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 149 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 150 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 151 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 152 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 153 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 154 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 155 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 156 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- step_over -i 157 -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 158 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 159 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 160 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 161 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 162 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 163 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 164 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 165 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 166 -[38] [Step Debug] -> - -[38] Log closed at 2024-10-22 08:56:32.947504 - -[30] Log opened at 2024-10-22 08:56:41.153889 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[30] [Step Debug] -> - -[30] [Step Debug] <- run -i 13 -[30] [Step Debug] -> - -[30] [Step Debug] -> - -[30] [Step Debug] -> - -[30] [Step Debug] -> - -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 14 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 19 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- run -i 21 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 22 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 27 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 29 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 30 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 31 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 32 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 33 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 35 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 37 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 38 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 39 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 40 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 41 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 42 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 43 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 44 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 45 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 46 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 47 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 48 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 49 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 50 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 51 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 52 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 53 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 54 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 55 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 56 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 57 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 58 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 59 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 60 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 61 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 62 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 63 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 64 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 65 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 66 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 67 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 68 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 69 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 70 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 71 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 72 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 73 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 74 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 75 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 76 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 77 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 78 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 79 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 80 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 81 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 82 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 83 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 84 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 85 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 86 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 87 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 88 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 89 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 90 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 91 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 92 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 93 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 94 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 95 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 96 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 97 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 98 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 99 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 100 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 101 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 102 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 103 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 104 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 105 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 106 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 107 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 108 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 109 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 110 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 111 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 112 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 113 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 114 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 115 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 116 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 117 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 118 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- step_over -i 119 -[30] [Step Debug] -> - -[30] [Step Debug] <- stack_get -i 120 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 121 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 122 -n "$return_data['errors']->status" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 123 -n "$uso" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- property_get -i 124 -n "$datos_papel" -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_names -i 125 -d 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- context_get -i 126 -d 0 -c 0 -[30] [Step Debug] -> - -[30] [Step Debug] <- run -i 127 -[30] [Step Debug] -> - -[30] Log closed at 2024-10-22 08:57:10.087117 - -[23] Log opened at 2024-10-22 08:58:12.505431 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 13 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 08:58:13.787754 - -[39] Log opened at 2024-10-22 08:58:14.019420 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[39] [Step Debug] -> - -[39] [Step Debug] <- run -i 13 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-22 08:58:14.191820 - -[33] Log opened at 2024-10-22 08:58:14.955990 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[32] Log opened at 2024-10-22 08:58:15.082129 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-22 08:58:15.083528 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[32] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[32] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[32] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[32] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[32] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[32] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[32] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[37] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[32] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[37] [Step Debug] -> - -[32] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[32] [Step Debug] -> - -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[37] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[37] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 13 -[32] [Step Debug] <- run -i 13 -[22] Log opened at 2024-10-22 08:58:15.416336 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 08:58:15.647922 - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:58:16.063301 - -[37] [Step Debug] -> - -[37] Log closed at 2024-10-22 08:58:16.201130 - -[33] Log opened at 2024-10-22 08:58:16.295751 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 08:58:16.467849 - -[22] Log opened at 2024-10-22 08:58:16.533375 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 08:58:16.675150 - -[22] Log opened at 2024-10-22 08:58:16.776959 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[32] Log opened at 2024-10-22 08:58:16.788533 -[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' -[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[32] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[32] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[32] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" -[32] [Step Debug] -> - -[22] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[32] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 4 -n max_children -v 100 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 -[32] [Step Debug] -> - -[32] [Step Debug] <- feature_set -i 8 -n extended_properties -v 1 -[32] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[32] [Step Debug] <- run -i 9 -[37] Log opened at 2024-10-22 08:58:16.875358 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- run -i 6 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:58:17.387296 - -[33] Log opened at 2024-10-22 08:58:17.551386 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[32] [Step Debug] -> - -[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[32] [Step Debug] -> - -[32] Log closed at 2024-10-22 08:58:17.657191 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 08:58:18.049089 - -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[37] [Step Debug] -> - -[37] Log closed at 2024-10-22 08:58:18.286566 - -[22] Log opened at 2024-10-22 08:58:20.168880 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[33] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:58:20.769281 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 08:58:20.992341 - -[33] Log opened at 2024-10-22 08:58:22.943642 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 14 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 19 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[33] [Step Debug] -> - -[22] Log opened at 2024-10-22 08:58:24.580348 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[26] Log opened at 2024-10-22 08:58:27.764139 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[26] [Step Debug] -> - -[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[26] [Step Debug] -> - -[26] [Step Debug] <- run -i 13 -[33] [Step Debug] <- run -i 21 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 22 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 27 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 29 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 30 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 31 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 32 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 33 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 35 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 37 -[30] Log opened at 2024-10-22 08:58:45.746276 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[30] [Step Debug] -> - -[30] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 38 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 39 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 40 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 41 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 42 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 43 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 44 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 45 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 46 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 47 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 48 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 49 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 50 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 51 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 52 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 53 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 54 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 55 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 56 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 57 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 58 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 59 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 60 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 61 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 62 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 63 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 64 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 65 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 66 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 67 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 68 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 69 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 70 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 71 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 72 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 73 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 74 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 75 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 76 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 77 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 78 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 79 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 80 -n "$return_data['errors']->status" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 81 -n "$uso" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 82 -n "$datos_papel" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 83 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 84 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 85 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:59:01.811913 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 08:59:02.126344 - -[26] [Step Debug] -> - -[26] Log closed at 2024-10-22 08:59:02.426869 - -[30] [Step Debug] -> - -[30] Log closed at 2024-10-22 08:59:02.688540 - -[33] Log opened at 2024-10-22 08:59:02.757544 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:59:02.872584 - -[33] Log opened at 2024-10-22 08:59:02.959483 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[30] Log opened at 2024-10-22 08:59:02.965385 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[30] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[33] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[30] [Step Debug] -> - -[30] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[30] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[30] [Step Debug] -> - -[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[30] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[30] [Step Debug] <- run -i 13 -[40] Log opened at 2024-10-22 08:59:03.064967 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[40] [Step Debug] -> - -[40] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[40] [Step Debug] -> - -[40] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[40] [Step Debug] -> - -[40] [Step Debug] <- run -i 13 -[30] [Step Debug] -> - -[30] Log closed at 2024-10-22 08:59:03.418817 - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:59:03.821886 - -[40] [Step Debug] -> - -[40] Log closed at 2024-10-22 08:59:04.060391 - -[33] Log opened at 2024-10-22 08:59:07.864232 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:59:08.590877 - -[33] Log opened at 2024-10-22 08:59:10.487419 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:59:11.110350 - -[33] Log opened at 2024-10-22 08:59:11.171417 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:59:11.285560 - -[33] Log opened at 2024-10-22 08:59:11.375726 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[39] Log opened at 2024-10-22 08:59:11.386627 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[33] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[39] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[39] [Step Debug] -> - -[33] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 5 -n max_children -v 100 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 6 -n max_data -v 8192 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[39] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[39] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[33] [Step Debug] -> - -[39] [Step Debug] -> - -[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 -[39] [Step Debug] -> - -[39] [Step Debug] <- feature_set -i 12 -n extended_properties -v 1 -[39] [Step Debug] -> - -[33] [Step Debug] <- run -i 13 -[39] [Step Debug] <- run -i 13 -[23] Log opened at 2024-10-22 08:59:11.440381 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 6 -[39] [Step Debug] -> - -[39] Log closed at 2024-10-22 08:59:11.799608 - -[33] [Step Debug] -> - -[33] Log closed at 2024-10-22 08:59:12.289863 - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[23] [Step Debug] -> - -[23] Log closed at 2024-10-22 08:59:12.456278 - -[38] Log opened at 2024-10-22 08:59:47.766426 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 363 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[38] [Step Debug] -> - -[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 13 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] [Step Debug] <- stack_get -i 14 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_names -i 19 -d 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[38] [Step Debug] -> - -[38] [Step Debug] <- run -i 21 -[38] [Step Debug] -> - -[38] [Step Debug] <- stop -i 22 -[38] [Step Debug] -> - -[38] [Step Debug] -> - -[38] Log closed at 2024-10-22 08:59:54.866090 - -[36] Log opened at 2024-10-22 09:00:00.629051 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:00:15.275538 - -[22] Log opened at 2024-10-22 09:00:28.234865 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:00:33.090671 - -[26] Log opened at 2024-10-22 09:00:43.223827 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 09:00:48.687801 - -[26] Log opened at 2024-10-22 09:00:51.690192 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 09:00:53.455213 - -[26] Log opened at 2024-10-22 09:00:53.575527 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 09:00:54.219047 - -[30] Log opened at 2024-10-22 09:00:54.600424 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:00:54.605930 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[40] Log opened at 2024-10-22 09:00:54.605920 -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-22 09:00:55.592837 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:00:55.916981 - -[40] Log opened at 2024-10-22 09:00:55.964861 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:00:56.584052 - -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-22 09:00:57.683950 - -[40] Log opened at 2024-10-22 09:00:57.771318 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[40] Log closed at 2024-10-22 09:01:03.046007 - -[37] Log opened at 2024-10-22 09:01:13.502780 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 09:01:18.715684 - -[38] Log opened at 2024-10-22 09:01:28.687906 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:01:33.923687 - -[22] Log opened at 2024-10-22 09:01:57.587697 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:01:59.323318 - -[22] Log opened at 2024-10-22 09:01:59.549154 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:02:00.247157 - -[23] Log opened at 2024-10-22 09:02:00.626370 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 09:02:00.737748 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:02:00.741085 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:02:01.733188 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:02:02.313900 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:02:02.668832 - -[26] Log opened at 2024-10-22 09:02:02.707431 -[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[26] Log closed at 2024-10-22 09:02:04.287637 - -[23] Log opened at 2024-10-22 09:02:04.395204 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:02:09.265780 - -[37] Log opened at 2024-10-22 09:02:20.702844 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 09:02:26.014236 - -[36] Log opened at 2024-10-22 09:03:19.320058 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:03:20.570220 - -[36] Log opened at 2024-10-22 09:03:20.638119 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:03:21.285763 - -[30] Log opened at 2024-10-22 09:03:21.386216 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 09:03:21.402401 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 09:03:21.486247 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:03:22.337671 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:03:22.974008 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:03:23.341487 - -[23] Log opened at 2024-10-22 09:03:32.203647 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:03:33.324093 - -[37] Log opened at 2024-10-22 09:03:33.393944 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 09:03:34.043292 - -[37] Log opened at 2024-10-22 09:03:34.115037 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:03:34.121559 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:03:35.050088 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 09:03:35.686827 - -[23] Log opened at 2024-10-22 09:03:37.520128 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:03:38.702926 - -[37] Log opened at 2024-10-22 09:03:38.762889 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 09:03:39.403721 - -[37] Log opened at 2024-10-22 09:03:39.495852 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:03:39.499770 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-22 09:03:39.569745 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:03:40.472587 - -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 09:03:41.062436 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:03:41.474634 - -[23] Log opened at 2024-10-22 09:03:43.717367 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:03:44.873890 - -[42] Log opened at 2024-10-22 09:03:52.500194 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:03:58.064237 - -[42] Log opened at 2024-10-22 09:04:02.053642 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:04:03.259963 - -[42] Log opened at 2024-10-22 09:04:03.313985 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:04:03.956700 - -[36] Log opened at 2024-10-22 09:04:04.041858 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:04:04.050157 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 09:04:04.120808 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:04:05.008333 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:04:05.703783 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:04:06.174905 - -[33] Log opened at 2024-10-22 09:04:11.127136 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:04:12.329859 - -[33] Log opened at 2024-10-22 09:04:12.420020 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:04:13.062393 - -[33] Log opened at 2024-10-22 09:04:13.156716 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 09:04:13.166478 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 09:04:13.216365 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:04:14.093485 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:04:14.674134 - -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:04:15.040332 - -[23] Log opened at 2024-10-22 09:04:34.860734 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:04:39.534261 - -[42] Log opened at 2024-10-22 09:04:44.868901 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:04:45.991910 - -[42] Log opened at 2024-10-22 09:04:46.198542 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:04:46.203863 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 09:04:46.266729 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:04:47.144144 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:04:47.802326 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:04:48.211999 - -[39] Log opened at 2024-10-22 09:04:50.116853 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:04:51.270563 - -[39] Log opened at 2024-10-22 09:04:55.174734 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:04:56.361000 - -[39] Log opened at 2024-10-22 09:04:56.420149 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:04:57.061829 - -[39] Log opened at 2024-10-22 09:04:57.162239 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 09:04:57.168325 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-10-22 09:04:57.215125 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:04:58.100576 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:04:58.710678 - -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] Log closed at 2024-10-22 09:04:59.090993 - -[38] Log opened at 2024-10-22 09:05:08.981471 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:05:10.246944 - -[41] Log opened at 2024-10-22 09:05:10.319108 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:05:10.958855 - -[41] Log opened at 2024-10-22 09:05:11.134494 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-22 09:05:11.137626 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 09:05:11.229027 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:05:12.091829 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:05:12.739353 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:05:13.217779 - -[33] Log opened at 2024-10-22 09:05:17.655459 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:05:18.562475 - -[33] Log opened at 2024-10-22 09:05:18.684987 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:05:19.591395 - -[33] Log opened at 2024-10-22 09:05:19.778627 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:05:20.407328 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:05:20.692572 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:05:21.326756 - -[33] Log opened at 2024-10-22 09:05:21.424203 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:05:22.335731 - -[42] Log opened at 2024-10-22 09:05:37.215272 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:05:38.544334 - -[36] Log opened at 2024-10-22 09:05:38.602804 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:05:39.244709 - -[36] Log opened at 2024-10-22 09:05:39.373982 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-22 09:05:39.387682 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 09:05:39.519179 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:05:40.322431 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:05:40.908625 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:05:41.326203 - -[30] Log opened at 2024-10-22 09:08:51.128347 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:08:52.347433 - -[30] Log opened at 2024-10-22 09:08:52.428772 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:08:53.071791 - -[38] Log opened at 2024-10-22 09:08:53.175381 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 09:08:53.180213 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 09:08:53.283272 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:08:54.110579 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:08:54.770915 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:08:55.204054 - -[23] Log opened at 2024-10-22 09:09:01.878737 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log opened at 2024-10-22 09:09:02.610640 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:03.161136 - -[42] Log opened at 2024-10-22 09:09:03.231000 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:09:03.376905 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:09:03.877517 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:09:03.962719 - -[33] Log opened at 2024-10-22 09:09:04.044008 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-22 09:09:04.046521 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 09:09:04.145429 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 09:09:04.145847 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:09:04.199626 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:04.686291 - -[23] Log opened at 2024-10-22 09:09:04.705336 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:09:04.710398 - -[42] Log opened at 2024-10-22 09:09:04.773529 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:09:05.186612 - -[22] Log opened at 2024-10-22 09:09:05.189890 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:09:05.427149 - -[42] Log opened at 2024-10-22 09:09:05.429302 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:09:05.782087 - -[33] Log opened at 2024-10-22 09:09:05.784920 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:09:06.434868 - -[36] Log opened at 2024-10-22 09:09:06.436654 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:06.887453 - -[39] Log opened at 2024-10-22 09:09:06.889208 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:07.432404 - -[23] Log opened at 2024-10-22 09:09:07.434896 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:09:07.882620 - -[42] Log opened at 2024-10-22 09:09:07.885459 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:09:08.525898 - -[22] Log opened at 2024-10-22 09:09:08.527471 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:09:08.535916 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] Log opened at 2024-10-22 09:09:08.893881 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:09:08.953146 - -[33] Log opened at 2024-10-22 09:09:08.954896 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:09:09.172567 - -[22] Log opened at 2024-10-22 09:09:09.174452 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:09:09.594298 - -[36] Log opened at 2024-10-22 09:09:09.596614 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:10.103382 - -[39] Log opened at 2024-10-22 09:09:10.106337 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:10.552214 - -[23] Log opened at 2024-10-22 09:09:10.554134 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:09:10.988929 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:09:11.576518 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:09:12.005042 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:09:12.601624 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:13.038675 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:13.521760 - -[38] Log opened at 2024-10-22 09:09:29.405535 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:09:31.263423 - -[38] Log opened at 2024-10-22 09:09:31.349558 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 09:09:31.352572 -[43] Log opened at 2024-10-22 09:09:31.353329 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:09:32.003127 - -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:09:32.484159 - -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 09:09:32.835700 - -[42] Log opened at 2024-10-22 09:09:32.850626 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] Log opened at 2024-10-22 09:09:32.854596 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[30] Log closed at 2024-10-22 09:09:33.793848 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:09:34.408642 - -[36] Log opened at 2024-10-22 09:09:40.767616 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:09:42.712417 - -[36] Log opened at 2024-10-22 09:09:42.781141 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:09:42.784774 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:09:42.786040 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:09:43.433682 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:43.887404 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:44.232746 - -[39] Log opened at 2024-10-22 09:09:44.253690 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:09:44.259400 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:45.197685 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:45.798393 - -[23] Log opened at 2024-10-22 09:09:46.926178 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:09:48.748376 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:48.872928 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-22 09:09:48.952073 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 09:09:48.958234 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 09:09:48.958238 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:49.600169 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:09:50.665869 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:50.779311 - -[39] Log opened at 2024-10-22 09:09:50.865393 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log opened at 2024-10-22 09:09:50.873674 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 09:09:50.874348 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:09:51.148974 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:51.519475 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:09:51.614892 - -[39] Log opened at 2024-10-22 09:09:51.657740 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 09:09:51.661755 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:52.898801 - -[23] Log opened at 2024-10-22 09:09:52.961627 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 09:09:52.964251 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 09:09:53.258944 - -[43] Log opened at 2024-10-22 09:09:53.261731 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:53.613217 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:09:53.709652 - -[23] Log opened at 2024-10-22 09:09:53.761935 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-22 09:09:53.770999 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:09:54.238776 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:54.892559 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:09:55.315057 - -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 09:09:55.643625 - -[22] Log opened at 2024-10-22 09:09:55.689719 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:09:55.695048 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:09:56.113527 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:09:56.716269 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:09:57.195143 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:09:57.824509 - -[42] Log opened at 2024-10-22 09:10:15.277894 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:10:17.182231 - -[42] Log opened at 2024-10-22 09:10:17.273138 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 09:10:17.277834 -[41] Log opened at 2024-10-22 09:10:17.277834 -[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: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:10:17.936217 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:10:18.370451 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:18.706404 - -[41] Log opened at 2024-10-22 09:10:18.722847 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 09:10:18.728106 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:19.689865 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 09:10:20.292599 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:10:20.300799 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:21.472026 - -[36] Log opened at 2024-10-22 09:10:24.506831 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:25.590028 - -[36] Log opened at 2024-10-22 09:10:25.601597 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:28.837416 - -[36] Log opened at 2024-10-22 09:10:28.881767 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-22 09:10:28.935520 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:10:28.936045 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:10:28.937239 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 09:10:28.937347 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 09:10:28.937341 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:29.536731 - -[36] Log opened at 2024-10-22 09:10:29.538550 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:10:29.993501 - -[23] Log opened at 2024-10-22 09:10:29.995966 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:10:30.337316 - -[39] Log opened at 2024-10-22 09:10:30.339391 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:10:30.694706 - -[33] Log opened at 2024-10-22 09:10:30.696752 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:10:31.083026 - -[22] Log opened at 2024-10-22 09:10:31.085321 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:10:31.517550 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:31.881332 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:10:32.228349 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:10:32.576383 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:10:32.921079 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:10:33.253726 - -[36] Log opened at 2024-10-22 09:10:33.454341 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:10:33.466008 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:10:34.522157 - -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:10:34.830638 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:35.150480 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:10:36.006951 - -[36] Log opened at 2024-10-22 09:10:36.094191 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:10:36.111997 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:37.422571 - -[22] Log opened at 2024-10-22 09:10:37.435451 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[33] Log opened at 2024-10-22 09:10:37.435451 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] Log opened at 2024-10-22 09:10:37.435451 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:10:37.844719 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:10:38.457076 - -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] Log closed at 2024-10-22 09:10:38.824162 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:10:39.217425 - -[41] Log opened at 2024-10-22 09:18:19.840470 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:18:21.704401 - -[41] Log opened at 2024-10-22 09:18:21.981076 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:18:22.640147 - -[39] Log opened at 2024-10-22 09:18:23.079864 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 09:18:23.107690 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] Log opened at 2024-10-22 09:18:23.108034 -[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:18:24.072952 - -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:18:24.713650 - -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[45] Log closed at 2024-10-22 09:18:25.050810 - -[33] Log opened at 2024-10-22 09:18:25.093578 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:18:26.574332 - -[39] Log opened at 2024-10-22 09:18:26.659010 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:18:31.647938 - -[39] Log opened at 2024-10-22 09:18:34.436505 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:18:39.082854 - -[39] Log opened at 2024-10-22 09:18:43.225731 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:18:48.270704 - -[43] Log opened at 2024-10-22 09:19:32.667748 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 09:19:34.413422 - -[43] Log opened at 2024-10-22 09:19:34.618120 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 09:19:35.278530 - -[42] Log opened at 2024-10-22 09:19:35.632052 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 09:19:35.736478 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-10-22 09:19:35.737475 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:19:36.730313 - -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:19:37.399264 - -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[38] Log closed at 2024-10-22 09:19:37.741413 - -[23] Log opened at 2024-10-22 09:19:37.781329 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:19:39.369807 - -[42] Log opened at 2024-10-22 09:19:39.470057 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:19:44.456202 - -[39] Log opened at 2024-10-22 09:20:01.784735 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:20:03.499763 - -[39] Log opened at 2024-10-22 09:20:03.701598 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:20:04.368344 - -[47] Log opened at 2024-10-22 09:20:04.725217 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 09:20:04.807661 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[46] Log opened at 2024-10-22 09:20:04.807847 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 09:20:05.760442 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 09:20:06.408501 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 09:20:06.754435 - -[22] Log opened at 2024-10-22 09:20:06.844637 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 09:20:08.366072 - -[23] Log opened at 2024-10-22 09:20:14.091482 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:20:15.244753 - -[42] Log opened at 2024-10-22 09:20:15.269595 -[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-22 09:20:15.558449 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 09:20:15.567997 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log opened at 2024-10-22 09:20:16.619795 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[42] Log closed at 2024-10-22 09:20:19.897041 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:20:20.336017 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 09:20:20.968995 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 09:20:21.404810 - -[33] Log opened at 2024-10-22 09:20:23.196940 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:20:27.834680 - -[33] Log opened at 2024-10-22 09:20:32.097343 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 09:20:36.754414 - -[39] Log opened at 2024-10-22 09:20:47.488079 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:20:48.602515 - -[39] Log opened at 2024-10-22 09:20:51.793057 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:20:52.957511 - -[39] Log opened at 2024-10-22 09:20:53.028272 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:20:53.670275 - -[43] Log opened at 2024-10-22 09:20:53.762540 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 09:20:53.770751 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 09:20:53.821244 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 09:20:54.696755 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 09:20:55.361739 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 09:20:55.745439 - -[41] Log opened at 2024-10-22 12:17:48.707329 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 12:17:49.667353 - -[22] Log opened at 2024-10-22 12:17:49.681124 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 12:17:50.689663 - -[22] Log opened at 2024-10-22 12:17:50.766089 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 12:17:51.407479 - -[23] Log opened at 2024-10-22 12:17:51.516283 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:17:52.415879 - -[23] Log opened at 2024-10-22 12:17:55.602579 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:17:57.012216 - -[23] Log opened at 2024-10-22 12:17:57.021816 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:17:58.180530 - -[23] Log opened at 2024-10-22 12:17:58.244064 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:17:58.884042 - -[23] Log opened at 2024-10-22 12:17:58.975678 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 12:17:58.992818 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 12:17:59.030749 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 12:17:59.950226 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:00.572867 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 12:18:00.949827 - -[23] Log opened at 2024-10-22 12:18:01.478426 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:02.504555 - -[23] Log opened at 2024-10-22 12:18:02.514563 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:03.641337 - -[23] Log opened at 2024-10-22 12:18:03.841011 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 12:18:03.841368 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 12:18:03.889000 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 12:18:04.774731 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:05.387932 - -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 12:18:05.765041 - -[23] Log opened at 2024-10-22 12:18:07.029533 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:08.162010 - -[23] Log opened at 2024-10-22 12:18:08.222123 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:08.864824 - -[23] Log opened at 2024-10-22 12:18:08.952943 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-10-22 12:18:08.959400 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-22 12:18:09.024860 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[39] Log closed at 2024-10-22 12:18:09.893986 - -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:10.532907 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 12:18:11.018543 - -[23] Log opened at 2024-10-22 12:18:13.774499 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:18:14.946702 - -[46] Log opened at 2024-10-22 12:31:34.144902 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 12:31:35.371607 - -[46] Log opened at 2024-10-22 12:31:35.463282 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 12:31:36.106522 - -[48] Log opened at 2024-10-22 12:31:36.221619 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 12:31:36.237712 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 12:31:36.385861 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 12:31:37.213961 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 12:31:37.993994 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:39.080287 - -[47] Log opened at 2024-10-22 12:31:43.934210 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:45.142672 - -[47] Log opened at 2024-10-22 12:31:47.407796 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:48.598232 - -[47] Log opened at 2024-10-22 12:31:48.665986 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:49.311815 - -[47] Log opened at 2024-10-22 12:31:49.408754 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 12:31:49.420798 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 12:31:49.475363 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 12:31:50.394347 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:51.023053 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 12:31:51.414460 - -[47] Log opened at 2024-10-22 12:31:54.695236 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:55.850462 - -[47] Log opened at 2024-10-22 12:31:55.908876 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:56.550929 - -[47] Log opened at 2024-10-22 12:31:56.646227 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 12:31:56.651581 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-22 12:31:56.719051 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 12:31:57.598413 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:31:58.213437 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 12:31:58.703791 - -[47] Log opened at 2024-10-22 12:32:00.871189 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:32:02.059958 - -[47] Log opened at 2024-10-22 12:32:02.120754 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:32:02.766860 - -[47] Log opened at 2024-10-22 12:32:02.860411 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-22 12:32:02.879058 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 12:32:02.916365 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 12:32:03.819685 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:32:04.493316 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 12:32:04.871333 - -[47] Log opened at 2024-10-22 12:32:06.895601 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:32:08.061387 - -[47] Log opened at 2024-10-22 12:32:08.137370 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:32:08.783031 - -[47] Log opened at 2024-10-22 12:32:08.879149 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 12:32:08.883716 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 12:32:08.953572 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 12:32:09.865294 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 12:32:10.533247 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 12:32:10.953405 - -[49] Log opened at 2024-10-22 14:17:37.817118 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:17:38.843746 - -[49] Log opened at 2024-10-22 14:17:38.857478 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:17:39.805350 - -[49] Log opened at 2024-10-22 14:17:40.059454 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:17:40.720858 - -[49] Log opened at 2024-10-22 14:17:40.985474 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:17:41.889592 - -[49] Log opened at 2024-10-22 14:17:42.636239 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:17:44.112957 - -[49] Log opened at 2024-10-22 14:17:44.124124 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:17:45.971280 - -[50] Log opened at 2024-10-22 14:17:46.114200 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:17:46.794526 - -[47] Log opened at 2024-10-22 14:17:47.053810 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-22 14:17:47.243339 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log opened at 2024-10-22 14:17:47.257539 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:17:48.244038 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:17:48.889675 - -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:17:49.222182 - -[50] Log opened at 2024-10-22 14:17:49.268448 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:17:50.813244 - -[50] Log opened at 2024-10-22 14:17:50.896573 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:17:56.816939 - -[22] Log opened at 2024-10-22 14:18:03.645987 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:18:08.583783 - -[46] Log opened at 2024-10-22 14:18:17.593290 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:18:18.797528 - -[48] Log opened at 2024-10-22 14:18:18.866194 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 14:18:19.528439 - -[48] Log opened at 2024-10-22 14:18:19.659813 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 14:18:19.686383 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-10-22 14:18:19.794101 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:18:20.637496 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 14:18:21.341497 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:18:21.784280 - -[49] Log opened at 2024-10-22 14:18:25.711406 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:18:26.849081 - -[49] Log opened at 2024-10-22 14:18:30.769243 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:18:31.962859 - -[49] Log opened at 2024-10-22 14:18:32.022683 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:18:32.665319 - -[49] Log opened at 2024-10-22 14:18:32.752476 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 14:18:32.763236 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 14:18:32.812929 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:18:33.740800 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:18:34.346705 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:18:34.708857 - -[22] Log opened at 2024-10-22 14:19:01.722615 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:19:02.929396 - -[41] Log opened at 2024-10-22 14:19:02.996392 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:19:03.658780 - -[41] Log opened at 2024-10-22 14:19:03.761803 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 14:19:03.777078 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 14:19:03.886322 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:19:04.730100 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:19:05.347513 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:19:05.754050 - -[22] Log opened at 2024-10-22 14:19:09.508039 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:19:11.286871 - -[22] Log opened at 2024-10-22 14:19:11.358166 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:19:11.997841 - -[48] Log opened at 2024-10-22 14:19:12.108287 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 14:19:12.112359 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 14:19:12.196024 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 14:19:12.209713 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 14:19:12.215762 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:19:13.099674 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 14:19:13.719719 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:19:14.130901 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:19:14.569521 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:19:14.987444 - -[49] Log opened at 2024-10-22 14:19:30.301152 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:19:31.428723 - -[49] Log opened at 2024-10-22 14:19:34.457570 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:19:35.594779 - -[33] Log opened at 2024-10-22 14:21:30.259912 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:21:35.489286 - -[50] Log opened at 2024-10-22 14:22:33.432076 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:22:34.531625 - -[50] Log opened at 2024-10-22 14:22:38.126349 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:22:39.253929 - -[50] Log opened at 2024-10-22 14:22:42.580546 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:22:43.692406 - -[41] Log opened at 2024-10-22 14:22:59.631164 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:23:05.769629 - -[23] Log opened at 2024-10-22 14:24:21.729895 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:24:23.395043 - -[23] Log opened at 2024-10-22 14:24:23.537923 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:24:24.181136 - -[48] Log opened at 2024-10-22 14:24:24.521313 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 14:24:24.525625 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 14:24:24.550741 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:24:25.476271 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 14:24:26.063769 - -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:24:26.396076 - -[48] Log opened at 2024-10-22 14:24:26.438212 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 14:24:27.911275 - -[22] Log opened at 2024-10-22 14:24:48.687778 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:24:50.389368 - -[22] Log opened at 2024-10-22 14:24:50.589639 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:24:51.238313 - -[49] Log opened at 2024-10-22 14:24:51.549064 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-22 14:24:51.653634 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 14:24:51.653579 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:24:52.698313 - -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[49] Log closed at 2024-10-22 14:24:53.265344 - -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:24:53.608095 - -[33] Log opened at 2024-10-22 14:24:53.654487 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:24:55.112530 - -[47] Log opened at 2024-10-22 14:26:25.568460 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:26:27.393369 - -[47] Log opened at 2024-10-22 14:26:27.659073 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:26:28.317694 - -[48] Log opened at 2024-10-22 14:26:28.815557 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log opened at 2024-10-22 14:26:29.017362 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 14:26:29.028046 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:26:29.992082 - -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 14:26:30.564169 - -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:26:30.892395 - -[46] Log opened at 2024-10-22 14:26:30.931392 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:26:32.446418 - -[48] Log opened at 2024-10-22 14:26:32.481651 -[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 14:26:32.548558 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[48] Log closed at 2024-10-22 14:26:33.574177 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:26:37.545219 - -[50] Log opened at 2024-10-22 14:27:12.049844 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:27:16.421734 - -[50] Log opened at 2024-10-22 14:27:19.928476 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:27:24.737407 - -[23] Log opened at 2024-10-22 14:28:06.561409 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:28:08.315831 - -[23] Log opened at 2024-10-22 14:28:08.609093 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:28:09.286470 - -[43] Log opened at 2024-10-22 14:28:09.671427 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 14:28:09.800668 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-22 14:28:09.804089 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:28:10.894233 - -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:28:11.667363 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 14:28:12.055275 - -[22] Log opened at 2024-10-22 14:28:12.103031 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:28:13.676581 - -[43] Log opened at 2024-10-22 14:28:13.708365 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 14:28:13.765236 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 14:28:18.594971 - -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:28:18.982597 - -[46] Log opened at 2024-10-22 14:28:31.785462 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:28:36.005908 - -[50] Log opened at 2024-10-22 14:28:52.246959 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:28:56.684087 - -[33] Log opened at 2024-10-22 14:29:06.660034 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:29:07.899387 - -[33] Log opened at 2024-10-22 14:29:07.961679 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:29:08.605101 - -[52] Log opened at 2024-10-22 14:29:08.695428 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-10-22 14:29:08.705125 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 14:29:08.775037 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:29:09.648057 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:29:10.264494 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:29:10.676870 - -[23] Log opened at 2024-10-22 14:29:13.191911 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] Log closed at 2024-10-22 14:29:17.616318 - -[46] Log opened at 2024-10-22 14:35:52.909525 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:35:54.614082 - -[46] Log opened at 2024-10-22 14:35:54.860620 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:35:55.525865 - -[50] Log opened at 2024-10-22 14:35:55.905715 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 14:35:56.030891 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 14:35:56.035756 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:35:57.060539 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:35:57.638517 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:35:57.982771 - -[47] Log opened at 2024-10-22 14:35:58.029909 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:35:59.714762 - -[50] Log opened at 2024-10-22 14:35:59.750233 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 14:35:59.827158 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:36:00.861070 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:36:04.657029 - -[22] Log opened at 2024-10-22 14:36:33.044729 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 140 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 14 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 19 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 21 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 22 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 27 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 29 -n "$presupuestoEntity->cliente_id" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 30 -n "$presupuestoEntity" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 31 -n "$presupuestoEntity" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 32 -n "$requestedId" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 33 -n "$presupuestoEntity" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 34 -n "$this->redirect2listView" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 35 -n "$user" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 36 -n "$presupuestoEntity" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 37 -n "$user" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 38 -n "$this" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 39 -n "$requestedId" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 40 -n "$model_user->find" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 41 -n "$user->cliente_id" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 42 -n "$presupuestoEntity" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 43 -n "$user->cliente_id" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 44 -n "$user->cliente_id" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 45 -n "$user->cliente_id" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 46 -n "$user->cliente_id" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 47 -n "$user->cliente_id" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 48 -n "$message" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 49 -n "$model_user" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 50 -n "$model_user" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_remove -i 51 -d 220041 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 52 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 14:37:44.977244 - -[22] Log opened at 2024-10-22 14:37:45.166068 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 12 -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 14:37:45.339316 - -[43] Log opened at 2024-10-22 14:37:45.792655 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[43] [Step Debug] -> - -[43] [Step Debug] <- run -i 12 -[22] Log opened at 2024-10-22 14:37:45.907321 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] Log opened at 2024-10-22 14:37:45.907734 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[53] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[53] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[53] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[53] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[53] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[53] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[53] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[22] [Step Debug] -> - -[53] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[22] [Step Debug] -> - -[53] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[22] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[53] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[53] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[53] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 12 -[22] [Step Debug] <- run -i 12 -[53] [Step Debug] -> - -[53] Log closed at 2024-10-22 14:37:46.445787 - -[43] [Step Debug] -> - -[43] Log closed at 2024-10-22 14:37:46.912231 - -[22] [Step Debug] -> - -[22] Log closed at 2024-10-22 14:37:47.072133 - -[53] Log opened at 2024-10-22 14:37:47.118240 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 12 -[53] [Step Debug] -> - -[53] [Step Debug] -> - -[53] [Step Debug] -> - -[53] [Step Debug] -> - -[53] Log closed at 2024-10-22 14:37:48.187886 - -[53] Log opened at 2024-10-22 14:37:48.219718 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[53] [Step Debug] -> - -[53] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[53] [Step Debug] -> - -[53] [Step Debug] <- run -i 12 -[43] Log opened at 2024-10-22 14:37:48.297838 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[43] [Step Debug] -> - -[43] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1810 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1868 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[43] [Step Debug] -> - -[43] [Step Debug] <- run -i 12 -[53] [Step Debug] -> - -[53] Log closed at 2024-10-22 14:37:48.827992 - -[43] [Step Debug] -> - -[43] [Step Debug] -> - -[43] [Step Debug] -> - -[43] [Step Debug] -> - -[43] [Step Debug] <- stack_get -i 13 -[43] [Step Debug] -> - -[43] [Step Debug] <- property_get -i 14 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[43] [Step Debug] -> - -[43] [Step Debug] <- property_get -i 15 -n "$return_data['errors']->status" -d 0 -c 0 -[43] [Step Debug] -> - -[43] [Step Debug] <- property_get -i 16 -n "$uso" -d 0 -c 0 -[43] [Step Debug] -> - -[43] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 -[43] [Step Debug] -> - -[43] [Step Debug] <- context_names -i 18 -d 0 -[43] [Step Debug] -> - -[43] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[43] [Step Debug] -> - -[43] [Step Debug] <- breakpoint_remove -i 20 -d 430008 -[43] [Step Debug] -> - -[43] [Step Debug] <- stop -i 21 -[43] [Step Debug] -> - -[43] [Step Debug] -> - -[43] Log closed at 2024-10-22 14:37:58.124057 - -[46] Log opened at 2024-10-22 14:38:32.428356 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:38:34.154119 - -[46] Log opened at 2024-10-22 14:38:34.329838 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:38:34.972107 - -[41] Log opened at 2024-10-22 14:38:35.238724 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log opened at 2024-10-22 14:38:35.461607 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 14:38:35.468806 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:38:36.408918 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:38:37.035300 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:38:37.361464 - -[52] Log opened at 2024-10-22 14:38:37.412243 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:38:38.901453 - -[52] Log opened at 2024-10-22 14:38:38.929198 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 14:38:38.988138 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:38:40.037118 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:38:43.675751 - -[33] Log opened at 2024-10-22 14:39:12.176452 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:39:13.971338 - -[33] Log opened at 2024-10-22 14:39:14.140557 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:39:14.781374 - -[50] Log opened at 2024-10-22 14:39:15.026780 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log opened at 2024-10-22 14:39:15.237014 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-22 14:39:15.238050 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:39:16.192038 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:39:16.788657 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 14:39:17.121270 - -[47] Log opened at 2024-10-22 14:39:17.165929 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:39:18.699320 - -[47] Log opened at 2024-10-22 14:39:18.729590 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-22 14:39:18.785602 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:39:19.839307 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 14:39:23.668303 - -[43] Log opened at 2024-10-22 14:41:01.650333 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:41:03.332001 - -[43] Log opened at 2024-10-22 14:41:03.469802 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:41:04.112435 - -[46] Log opened at 2024-10-22 14:41:04.375518 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 14:41:04.525762 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 14:41:04.534881 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:41:05.478075 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:41:06.055335 - -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:41:06.398656 - -[52] Log opened at 2024-10-22 14:41:06.448053 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:41:07.919658 - -[52] Log opened at 2024-10-22 14:41:07.950068 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 14:41:08.009235 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:41:09.045344 - -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:41:12.853854 - -[53] Log opened at 2024-10-22 14:43:24.346657 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-22 14:43:26.066742 - -[53] Log opened at 2024-10-22 14:43:26.247795 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-22 14:43:26.901573 - -[51] Log opened at 2024-10-22 14:43:27.284614 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] Log opened at 2024-10-22 14:43:27.312125 -[47] Log opened at 2024-10-22 14:43:27.312136 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:43:28.314489 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 14:43:28.931458 - -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-22 14:43:29.263984 - -[47] Log opened at 2024-10-22 14:43:29.311333 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:43:30.834047 - -[47] Log opened at 2024-10-22 14:43:30.863535 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-22 14:43:30.920463 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 14:43:31.960525 - -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 14:43:36.383673 - -[43] Log opened at 2024-10-22 14:44:00.898321 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:44:02.627171 - -[43] Log opened at 2024-10-22 14:44:02.767000 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 14:44:03.415074 - -[41] Log opened at 2024-10-22 14:44:03.723298 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 14:44:03.822472 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] Log opened at 2024-10-22 14:44:03.828250 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:44:04.818593 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:44:05.400109 - -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:44:05.734509 - -[52] Log opened at 2024-10-22 14:44:05.775629 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 14:44:07.207339 - -[33] Log opened at 2024-10-22 14:45:18.064489 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] Log opened at 2024-10-22 14:45:18.141821 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-22 14:45:22.845796 - -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 14:45:23.255736 - -[41] Log opened at 2024-10-22 14:50:18.150979 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:50:19.327340 - -[41] Log opened at 2024-10-22 14:50:22.373077 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:50:24.076861 - -[41] Log opened at 2024-10-22 14:50:24.096421 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 14:50:33.304302 - -[46] Log opened at 2024-10-22 14:50:41.082060 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:50:45.768617 - -[46] Log opened at 2024-10-22 14:50:50.113266 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 14:50:55.184915 - -[53] Log opened at 2024-10-22 15:00:38.536358 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-22 15:00:40.388450 - -[53] Log opened at 2024-10-22 15:00:40.568609 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-10-22 15:00:41.209291 - -[50] Log opened at 2024-10-22 15:00:41.474461 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-22 15:00:41.637604 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 15:00:41.641708 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log opened at 2024-10-22 15:00:41.727827 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 15:00:42.597839 - -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:00:43.145529 - -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:00:43.486466 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:00:44.473735 - -[47] Log opened at 2024-10-22 15:00:44.620723 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:00:45.284705 - -[46] Log opened at 2024-10-22 15:00:45.656584 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 15:00:45.715042 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 15:00:45.718697 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 15:00:46.675398 - -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:00:46.989448 - -[41] Log opened at 2024-10-22 15:00:47.030729 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 15:00:47.627636 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:00:48.461910 - -[46] Log opened at 2024-10-22 15:00:48.491540 -[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 15:00:48.550672 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[46] Log closed at 2024-10-22 15:00:49.586753 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:00:53.178504 - -[22] Log opened at 2024-10-22 15:02:06.780277 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:02:08.444496 - -[22] Log opened at 2024-10-22 15:02:08.664443 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:02:09.321720 - -[47] Log opened at 2024-10-22 15:02:09.691908 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 15:02:09.842497 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-10-22 15:02:09.848180 -[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 15:02:10.922427 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:02:11.488366 - -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] Log closed at 2024-10-22 15:02:11.878679 - -[52] Log opened at 2024-10-22 15:02:11.926013 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:02:13.533145 - -[47] Log opened at 2024-10-22 15:02:13.565734 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 15:02:13.629280 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:02:14.637377 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:02:18.286793 - -[51] Log opened at 2024-10-22 15:03:13.825998 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 15:03:15.536256 - -[51] Log opened at 2024-10-22 15:03:15.742909 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 15:03:16.406952 - -[55] Log opened at 2024-10-22 15:03:16.796143 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] Log opened at 2024-10-22 15:03:16.909775 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-10-22 15:03:16.910784 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-22 15:03:17.937873 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:03:18.521833 - -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[43] Log closed at 2024-10-22 15:03:18.864338 - -[22] Log opened at 2024-10-22 15:03:18.906708 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:03:20.403492 - -[55] Log opened at 2024-10-22 15:03:20.432258 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 15:03:20.491787 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:03:24.871829 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:03:25.265197 - -[52] Log opened at 2024-10-22 15:06:08.469014 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:06:10.135935 - -[52] Log opened at 2024-10-22 15:06:10.347427 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:06:11.004596 - -[54] Log opened at 2024-10-22 15:06:11.442038 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] Log opened at 2024-10-22 15:06:11.457803 -[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-22 15:06:11.458331 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-22 15:06:12.444908 - -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-22 15:06:13.077556 - -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[51] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[51] Log closed at 2024-10-22 15:06:13.425081 - -[41] Log opened at 2024-10-22 15:06:13.464418 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:06:14.898295 - -[54] Log opened at 2024-10-22 15:06:14.935543 -[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 15:06:14.995511 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[54] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[54] Log closed at 2024-10-22 15:06:16.023457 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:06:19.794427 - -[55] Log opened at 2024-10-22 15:07:00.222058 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:07:01.920228 - -[55] Log opened at 2024-10-22 15:07:02.135406 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:07:02.791279 - -[50] Log opened at 2024-10-22 15:07:03.225902 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-22 15:07:03.250569 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[57] Log opened at 2024-10-22 15:07:03.250733 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-22 15:07:04.315932 - -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-22 15:07:04.626437 - -[47] Log opened at 2024-10-22 15:07:04.667090 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:07:05.245581 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:07:06.102188 - -[50] Log opened at 2024-10-22 15:07:06.132779 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 15:07:06.196846 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:07:07.242712 - -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:07:11.054517 - -[41] Log opened at 2024-10-22 15:09:41.108421 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:09:45.963432 - -[55] Log opened at 2024-10-22 15:10:41.093238 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:10:42.782780 - -[55] Log opened at 2024-10-22 15:10:43.006213 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:10:43.663509 - -[52] Log opened at 2024-10-22 15:10:44.035684 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-10-22 15:10:44.145308 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 15:10:44.164159 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:10:45.112933 - -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:10:45.700971 - -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:10:46.037857 - -[56] Log opened at 2024-10-22 15:10:46.081484 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-22 15:10:47.548142 - -[52] Log opened at 2024-10-22 15:10:47.575929 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-10-22 15:10:47.638537 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:10:48.663240 - -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-22 15:10:52.354244 - -[41] Log opened at 2024-10-22 15:11:07.926378 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:11:12.301209 - -[22] Log opened at 2024-10-22 15:13:36.192290 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:13:37.924470 - -[22] Log opened at 2024-10-22 15:13:38.095111 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:13:38.734187 - -[59] Log opened at 2024-10-22 15:13:39.007606 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-22 15:13:39.131170 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-22 15:13:39.138830 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:13:40.101900 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-22 15:13:40.769919 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:13:41.104269 - -[58] Log opened at 2024-10-22 15:13:41.142560 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:13:42.570861 - -[58] Log opened at 2024-10-22 15:13:42.604486 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] Log opened at 2024-10-22 15:13:42.663036 -[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:13:43.763273 - -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[59] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[59] Log closed at 2024-10-22 15:13:47.779693 - -[57] Log opened at 2024-10-22 15:14:03.147854 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-22 15:14:07.919390 - -[57] Log opened at 2024-10-22 15:14:11.260086 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-22 15:14:15.616525 - -[50] Log opened at 2024-10-22 15:14:33.846617 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:14:39.056250 - -[52] Log opened at 2024-10-22 15:15:01.751676 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:15:03.600998 - -[52] Log opened at 2024-10-22 15:15:03.798887 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:15:04.456820 - -[58] Log opened at 2024-10-22 15:15:04.828670 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-10-22 15:15:04.924753 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-22 15:15:04.946669 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:15:05.921986 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:15:06.512499 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:15:06.842679 - -[56] Log opened at 2024-10-22 15:15:06.889860 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-10-22 15:15:08.263172 - -[58] Log opened at 2024-10-22 15:15:08.352152 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:15:12.685618 - -[57] Log opened at 2024-10-22 15:15:18.868188 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-22 15:15:20.033543 - -[57] Log opened at 2024-10-22 15:15:22.412797 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-22 15:15:23.465769 - -[47] Log opened at 2024-10-22 15:15:40.743215 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:15:42.418705 - -[47] Log opened at 2024-10-22 15:15:42.658350 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:15:43.322442 - -[22] Log opened at 2024-10-22 15:15:43.787902 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 15:15:43.827138 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] Log opened at 2024-10-22 15:15:43.831596 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:15:44.796804 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:15:45.116955 - -[60] Log opened at 2024-10-22 15:15:45.158538 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:15:45.713313 - -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:15:46.666916 - -[22] Log opened at 2024-10-22 15:15:46.750906 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:15:51.355670 - -[58] Log opened at 2024-10-22 15:15:57.454886 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:15:58.542277 - -[58] Log opened at 2024-10-22 15:15:59.092613 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] Log opened at 2024-10-22 15:15:59.142004 -[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log opened at 2024-10-22 15:15:59.305523 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:16:00.273211 - -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[57] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[57] Log closed at 2024-10-22 15:16:00.785853 - -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:16:01.300600 - -[61] Log opened at 2024-10-22 15:16:03.455551 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-22 15:16:04.636368 - -[52] Log opened at 2024-10-22 15:16:21.560419 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:16:23.200439 - -[52] Log opened at 2024-10-22 15:16:23.390631 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:16:24.051126 - -[22] Log opened at 2024-10-22 15:16:24.404418 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-22 15:16:24.486079 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-22 15:16:24.489077 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:16:25.464184 - -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:16:26.059283 - -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:16:26.393674 - -[55] Log opened at 2024-10-22 15:16:26.438284 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:16:27.825168 - -[22] Log opened at 2024-10-22 15:16:27.912399 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] Log closed at 2024-10-22 15:16:32.223130 - -[50] Log opened at 2024-10-22 15:16:37.899101 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:16:38.965106 - -[50] Log opened at 2024-10-22 15:16:42.133147 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[50] Log closed at 2024-10-22 15:16:43.231929 - -[62] Log opened at 2024-10-22 15:16:59.068056 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-22 15:17:00.773945 - -[62] Log opened at 2024-10-22 15:17:00.961010 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-22 15:17:01.635673 - -[58] Log opened at 2024-10-22 15:17:02.048691 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] Log opened at 2024-10-22 15:17:02.136602 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 15:17:02.141940 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:17:03.119606 - -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:17:03.713211 - -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:17:04.043135 - -[55] Log opened at 2024-10-22 15:17:04.093027 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:17:05.554056 - -[58] Log opened at 2024-10-22 15:17:05.655999 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:17:10.049684 - -[61] Log opened at 2024-10-22 15:17:31.486034 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-22 15:17:32.595140 - -[61] Log opened at 2024-10-22 15:17:34.897948 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-22 15:17:36.004258 - -[62] Log opened at 2024-10-22 15:28:51.755392 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-22 15:28:53.626945 - -[62] Log opened at 2024-10-22 15:28:53.858813 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-22 15:28:54.521515 - -[55] Log opened at 2024-10-22 15:28:55.034711 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] Log opened at 2024-10-22 15:28:55.178179 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 15:28:55.181483 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:28:56.207824 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:28:56.848112 - -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:28:57.179732 - -[60] Log opened at 2024-10-22 15:28:57.227645 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:28:58.755308 - -[55] Log opened at 2024-10-22 15:28:58.858559 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:29:03.316854 - -[61] Log opened at 2024-10-22 15:29:10.977438 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-22 15:29:12.104076 - -[61] Log opened at 2024-10-22 15:29:14.432392 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-22 15:29:15.545554 - -[63] Log opened at 2024-10-22 15:30:21.906884 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 15:30:23.624455 - -[63] Log opened at 2024-10-22 15:30:23.834832 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 15:30:24.510162 - -[41] Log opened at 2024-10-22 15:30:25.044133 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 15:30:25.066869 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] Log opened at 2024-10-22 15:30:25.068429 -[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:30:26.066465 - -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:30:26.628491 - -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[62] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[62] Log closed at 2024-10-22 15:30:26.975989 - -[58] Log opened at 2024-10-22 15:30:27.019962 -[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[58] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[58] Log closed at 2024-10-22 15:30:28.462626 - -[41] Log opened at 2024-10-22 15:30:28.567792 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[41] Log closed at 2024-10-22 15:30:32.826536 - -[60] Log opened at 2024-10-22 15:30:38.494985 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:30:39.645519 - -[60] Log opened at 2024-10-22 15:30:41.648561 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:30:42.777852 - -[61] Log opened at 2024-10-22 15:33:38.591386 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-22 15:33:40.322415 - -[61] Log opened at 2024-10-22 15:33:40.593493 -[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[61] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[61] Log closed at 2024-10-22 15:33:41.256392 - -[55] Log opened at 2024-10-22 15:33:41.633857 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] Log opened at 2024-10-22 15:33:41.753711 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] Log opened at 2024-10-22 15:33:41.754366 -[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] Log closed at 2024-10-22 15:33:42.750121 - -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:33:43.367716 - -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[47] Log closed at 2024-10-22 15:33:43.690446 - -[60] Log opened at 2024-10-22 15:33:43.733956 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:33:45.213424 - -[55] Log opened at 2024-10-22 15:33:45.315228 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-10-22 15:33:51.170811 - -[64] Log opened at 2024-10-22 15:34:05.903289 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-22 15:34:07.305435 - -[64] Log opened at 2024-10-22 15:34:09.524849 -[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[64] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[64] Log closed at 2024-10-22 15:34:10.658193 - -[74] Log opened at 2024-10-22 15:35:48.687769 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-22 15:35:50.645956 - -[74] Log opened at 2024-10-22 15:35:50.885964 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-22 15:35:51.538017 - -[76] Log opened at 2024-10-22 15:35:51.982930 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] Log opened at 2024-10-22 15:35:51.999384 -[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[75] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[75] Log closed at 2024-10-22 15:35:52.989768 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 15:35:53.572589 - -[60] Log opened at 2024-10-22 15:36:45.974390 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:36:47.717685 - -[60] Log opened at 2024-10-22 15:36:47.921114 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:36:48.580353 - -[74] Log opened at 2024-10-22 15:36:48.924093 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] Log opened at 2024-10-22 15:36:49.046530 -[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-22 15:36:49.046849 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 15:36:50.024784 - -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-22 15:36:50.615064 - -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[60] Log closed at 2024-10-22 15:36:50.949608 - -[73] Log opened at 2024-10-22 15:36:50.996265 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] Log closed at 2024-10-22 15:36:52.479919 - -[74] Log opened at 2024-10-22 15:36:52.571998 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-22 15:36:57.140499 - -[68] Log opened at 2024-10-22 15:38:15.244159 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[68] [Step Debug] -> - -[68] [Step Debug] <- run -i 12 -[68] [Step Debug] -> - -[68] [Step Debug] -> - -[68] [Step Debug] -> - -[68] [Step Debug] -> - -[68] Log closed at 2024-10-22 15:38:16.526802 - -[68] Log opened at 2024-10-22 15:38:16.753970 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[68] [Step Debug] -> - -[77] Log opened at 2024-10-22 15:38:16.818942 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[77] [Step Debug] -> - -[68] [Step Debug] <- run -i 12 -[77] [Step Debug] <- run -i 6 -[68] [Step Debug] -> - -[68] Log closed at 2024-10-22 15:38:16.931087 - -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[77] [Step Debug] -> - -[77] Log closed at 2024-10-22 15:38:17.045946 - -[52] Log opened at 2024-10-22 15:38:17.384059 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[52] [Step Debug] -> - -[52] [Step Debug] <- run -i 12 -[52] [Step Debug] -> - -[52] Log closed at 2024-10-22 15:38:17.563565 - -[52] Log opened at 2024-10-22 15:38:17.591148 -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[52] [Step Debug] -> - -[52] [Step Debug] <- run -i 12 -[63] Log opened at 2024-10-22 15:38:17.739406 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[63] [Step Debug] -> - -[78] Log opened at 2024-10-22 15:38:17.743731 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[63] [Step Debug] -> - -[78] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[63] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[78] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[63] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[78] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[63] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[63] [Step Debug] -> - -[78] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[63] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[78] [Step Debug] -> - -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[63] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[78] [Step Debug] -> - -[63] [Step Debug] <- run -i 12 -[78] [Step Debug] <- run -i 12 -[63] [Step Debug] -> - -[63] Log closed at 2024-10-22 15:38:18.252979 - -[52] [Step Debug] -> - -[52] Log closed at 2024-10-22 15:38:18.624682 - -[78] [Step Debug] -> - -[78] Log closed at 2024-10-22 15:38:18.765570 - -[72] Log opened at 2024-10-22 15:38:18.812785 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[72] [Step Debug] -> - -[72] [Step Debug] <- run -i 12 -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 13 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 14 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 15 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 16 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 17 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 18 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_into -i 20 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 21 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 22 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 23 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 24 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 25 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 26 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 27 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] <- run -i 29 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 30 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 31 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 32 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 33 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 34 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 35 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 36 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 37 -n "$cliente_id" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 38 -n "$id" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 39 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 40 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 41 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 42 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 43 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 44 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 45 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 46 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 47 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 48 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 49 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 50 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 51 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 52 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 53 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 54 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 55 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 56 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 57 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 58 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 59 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 60 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 61 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 62 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 63 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 64 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 65 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 66 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 67 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 68 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 69 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 70 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 71 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 72 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 73 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 74 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 75 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 76 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 77 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 78 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 79 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 80 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 81 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 82 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 83 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 84 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 85 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 86 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 87 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 88 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 89 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 90 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 91 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 92 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 93 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 94 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 95 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 96 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 97 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 98 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 99 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 100 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 101 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 102 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 103 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 104 -n "$model_direcciones->getIdForPresupuestoCliente" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- step_over -i 105 -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 106 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 107 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 108 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 109 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 110 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 111 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 112 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- run -i 113 -[72] [Step Debug] -> - -[72] Log closed at 2024-10-22 15:39:05.679994 - -[72] Log opened at 2024-10-22 15:39:05.795473 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1801 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[72] [Step Debug] -> - -[72] [Step Debug] <- run -i 13 -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] <- stack_get -i 14 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_names -i 19 -d 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_remove -i 21 -d 720010 -[72] [Step Debug] -> - -[72] [Step Debug] <- run -i 22 -[72] [Step Debug] -> - -[72] Log closed at 2024-10-22 15:39:14.799586 - -[73] Log opened at 2024-10-22 15:39:25.262736 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[73] [Step Debug] -> - -[73] [Step Debug] <- run -i 12 -[73] [Step Debug] -> - -[73] Log closed at 2024-10-22 15:39:25.901035 - -[73] Log opened at 2024-10-22 15:39:29.699549 -[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' -[73] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[73] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[73] [Step Debug] -> - -[73] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[73] [Step Debug] -> - -[73] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[73] [Step Debug] -> - -[73] [Step Debug] <- run -i 12 -[73] [Step Debug] -> - -[73] Log closed at 2024-10-22 15:39:30.307417 - -[74] Log opened at 2024-10-22 15:39:50.405814 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 754 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[74] [Step Debug] -> - -[74] [Step Debug] <- run -i 13 -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 14 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 15 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 16 -n "$return_data['errors']->status" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 17 -n "$uso" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 18 -n "$datos_papel" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 19 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 20 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 21 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 22 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 23 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 24 -n "$return_data['errors']->status" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 25 -n "$uso" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 26 -n "$datos_papel" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 27 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 29 -n "$direcciones" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_remove -i 30 -d 740002 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 31 -n "$resultado_presupuesto" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] <- run -i 33 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 34 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 35 -n "$datosPedido->anchoExteriores" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 36 -n "$return_data['errors']->status" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 37 -n "$uso" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 38 -n "$datos_papel" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 39 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 41 -n "$reqData" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 42 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 43 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 44 -n "$return_data['errors']->status" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 45 -n "$uso" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 46 -n "$datos_papel" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 47 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 48 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 49 -n "$uso" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 50 -n "$datos_papel" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 51 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 52 -n "$datos_papel" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 53 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_remove -i 54 -d 740008 -[74] [Step Debug] -> - -[74] [Step Debug] <- breakpoint_set -i 55 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[74] [Step Debug] -> - -[74] [Step Debug] -> - -[74] [Step Debug] <- run -i 56 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 57 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 58 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 59 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 60 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 61 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 62 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 63 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 64 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 65 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 66 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 67 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 68 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 69 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 70 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 71 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 72 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 73 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 74 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 75 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 76 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 77 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 78 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 79 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 80 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 81 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 82 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 83 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 84 -n "$model->insert" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 85 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 86 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 87 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 88 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 89 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 90 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 91 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 92 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 93 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 94 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 95 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 96 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 97 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 98 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 99 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 100 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 101 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 102 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 103 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 104 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 105 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 106 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 107 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 108 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 109 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 110 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 111 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 112 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 113 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 114 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 115 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 116 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 117 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 118 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 119 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 120 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 121 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 122 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 123 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 124 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 125 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 126 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 127 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 128 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 129 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 130 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 131 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 132 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 133 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 134 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 135 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 136 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 137 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 138 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 139 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 140 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 141 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 142 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 143 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- step_over -i 144 -[74] [Step Debug] -> - -[74] [Step Debug] <- stack_get -i 145 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 146 -n "$reqData['direcciones']" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_names -i 147 -d 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- context_get -i 148 -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- property_get -i 149 -n "$data[0]" -d 0 -c 0 -[74] [Step Debug] -> - -[74] [Step Debug] <- run -i 150 -[74] [Step Debug] -> - -[74] Log closed at 2024-10-22 15:42:13.030067 - -[79] Log opened at 2024-10-22 15:42:30.559151 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[79] [Step Debug] -> - -[79] [Step Debug] <- run -i 13 -[79] [Step Debug] -> - -[79] [Step Debug] -> - -[79] [Step Debug] -> - -[79] [Step Debug] -> - -[79] [Step Debug] -> - -[79] Log closed at 2024-10-22 15:42:31.883794 - -[79] Log opened at 2024-10-22 15:42:32.156361 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[79] [Step Debug] -> - -[79] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[79] [Step Debug] -> - -[79] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[79] [Step Debug] -> - -[78] Log opened at 2024-10-22 15:42:32.228922 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] -> - -[79] [Step Debug] <- run -i 13 -[78] [Step Debug] <- run -i 1 -[79] [Step Debug] -> - -[79] Log closed at 2024-10-22 15:42:32.345372 - -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[78] [Step Debug] -> - -[78] Log closed at 2024-10-22 15:42:32.460633 - -[63] Log opened at 2024-10-22 15:42:32.865117 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[63] [Step Debug] -> - -[63] [Step Debug] <- run -i 13 -[63] [Step Debug] -> - -[63] Log closed at 2024-10-22 15:42:33.090640 - -[63] Log opened at 2024-10-22 15:42:33.122657 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[63] [Step Debug] -> - -[63] [Step Debug] <- run -i 13 -[52] Log opened at 2024-10-22 15:42:33.262652 -[68] Log opened at 2024-10-22 15:42:33.262654 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' -[52] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[52] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[52] [Step Debug] -> - -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[68] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[68] [Step Debug] -> - -[52] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[52] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[68] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[52] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[68] [Step Debug] -> - -[52] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[52] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[68] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[52] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[52] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[68] [Step Debug] -> - -[52] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[68] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[52] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[68] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[68] [Step Debug] -> - -[52] [Step Debug] -> - -[52] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[52] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[68] [Step Debug] -> - -[52] [Step Debug] <- run -i 13 -[68] [Step Debug] <- run -i 13 -[68] [Step Debug] -> - -[68] Log closed at 2024-10-22 15:42:33.844500 - -[63] [Step Debug] -> - -[63] Log closed at 2024-10-22 15:42:34.241699 - -[52] [Step Debug] -> - -[52] Log closed at 2024-10-22 15:42:34.386472 - -[77] Log opened at 2024-10-22 15:42:34.462877 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 13 -[77] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 14 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 15 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 16 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 17 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 18 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 19 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 20 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 21 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 22 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 23 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 24 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 25 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 26 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 27 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 28 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 29 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 30 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 31 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 32 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 33 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 34 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 35 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 36 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 37 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 38 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 39 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 40 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 41 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 42 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 43 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 44 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 45 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 46 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 47 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 48 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 49 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 50 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 51 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 52 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 53 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 54 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 55 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 56 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 57 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 58 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 59 -n "$direccion_id[0]" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 60 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 61 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 62 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 63 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 64 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 66 -n "$direccion_id[0]" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 67 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 68 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 69 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 70 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 71 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 72 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 73 -n "$direccion_id[0]" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 74 -n "$temp" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 75 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 76 -[77] [Step Debug] -> - -[77] Log closed at 2024-10-22 15:45:12.394773 - -[77] Log opened at 2024-10-22 15:45:12.438427 -[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' -[77] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[77] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[77] [Step Debug] -> - -[77] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 14 -[77] [Step Debug] -> - -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 15 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 16 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 17 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 19 -n "$id" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 20 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 21 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 22 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[72] Log opened at 2024-10-22 15:45:18.653776 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[72] [Step Debug] -> - -[72] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[72] [Step Debug] -> - -[72] [Step Debug] <- run -i 14 -[77] [Step Debug] <- context_names -i 23 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- step_over -i 25 -[77] [Step Debug] -> - -[77] [Step Debug] <- stack_get -i 26 -[77] [Step Debug] -> - -[77] [Step Debug] <- property_get -i 27 -n "$reqData['direcciones']" -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_names -i 28 -d 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- context_get -i 29 -d 0 -c 0 -[77] [Step Debug] -> - -[77] [Step Debug] <- run -i 30 -[77] [Step Debug] -> - -[77] Log closed at 2024-10-22 15:45:36.384565 - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] [Step Debug] -> - -[72] Log closed at 2024-10-22 15:45:40.062330 - -[76] Log opened at 2024-10-22 15:50:20.712653 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[76] [Step Debug] <- run -i 14 -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] -> - -[76] Log closed at 2024-10-22 15:50:22.071391 - -[76] Log opened at 2024-10-22 15:50:22.339315 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[76] [Step Debug] -> - -[80] Log opened at 2024-10-22 15:50:22.423546 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[80] [Step Debug] -> - -[76] [Step Debug] <- run -i 14 -[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[80] [Step Debug] -> - -[80] [Step Debug] <- run -i 3 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-22 15:50:22.509894 - -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[80] [Step Debug] -> - -[80] Log closed at 2024-10-22 15:50:22.666771 - -[63] Log opened at 2024-10-22 15:50:23.081124 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[63] [Step Debug] -> - -[63] [Step Debug] <- run -i 14 -[63] [Step Debug] -> - -[63] [Step Debug] <- stop -i 15 -[63] [Step Debug] -> - -[63] Log closed at 2024-10-22 15:50:23.349878 - -[63] Log opened at 2024-10-22 15:50:23.408260 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-22 15:50:23.499989 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-22 15:50:23.518146 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 15:50:24.563416 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 15:50:25.202045 - -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-22 15:50:25.548347 - -[78] Log opened at 2024-10-22 15:50:25.616305 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-22 15:50:27.079805 - -[63] Log opened at 2024-10-22 15:50:27.118542 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 15:50:28.292578 - -[78] Log opened at 2024-10-22 15:50:28.293327 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-22 15:50:33.093272 - -[80] Log opened at 2024-10-22 15:51:27.927257 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[80] [Step Debug] -> - -[80] [Step Debug] <- run -i 14 -[80] [Step Debug] -> - -[80] [Step Debug] -> - -[80] [Step Debug] -> - -[80] [Step Debug] -> - -[80] [Step Debug] -> - -[80] Log closed at 2024-10-22 15:51:29.238823 - -[80] Log opened at 2024-10-22 15:51:29.464386 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[80] [Step Debug] -> - -[80] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[80] [Step Debug] -> - -[80] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[80] [Step Debug] -> - -[80] [Step Debug] <- run -i 14 -[80] [Step Debug] -> - -[80] Log closed at 2024-10-22 15:51:29.671634 - -[78] Log opened at 2024-10-22 15:51:30.141826 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[78] [Step Debug] -> - -[78] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[78] [Step Debug] -> - -[76] Log opened at 2024-10-22 15:51:30.184435 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] Log opened at 2024-10-22 15:51:30.184582 -[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' -[68] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[68] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[68] [Step Debug] -> - -[76] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[76] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[68] [Step Debug] -> - -[76] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[76] [Step Debug] -> - -[68] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[76] [Step Debug] -> - -[68] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[76] [Step Debug] -> - -[68] [Step Debug] -> - -[76] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[76] [Step Debug] -> - -[68] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[68] [Step Debug] -> - -[76] [Step Debug] <- run -i 6 -[68] [Step Debug] <- run -i 6 -[78] [Step Debug] <- run -i 14 -[76] [Step Debug] -> - -[76] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[76] [Step Debug] -> - -[76] Log closed at 2024-10-22 15:51:30.678043 - -[68] [Step Debug] -> - -[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[68] [Step Debug] -> - -[68] Log closed at 2024-10-22 15:51:30.814534 - -[63] Log opened at 2024-10-22 15:51:30.879058 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Clientedirecciones.php -n 217 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 440 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 983 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1140 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 2205 -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" -[63] [Step Debug] -> - -[63] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" -[63] [Step Debug] -> - -[63] [Step Debug] <- run -i 14 -[78] [Step Debug] -> - -[78] [Step Debug] <- stop -i 15 -[78] [Step Debug] -> - -[78] Log closed at 2024-10-22 15:51:31.367448 - -[63] [Step Debug] -> - -[63] [Step Debug] -> - -[63] [Step Debug] -> - -[63] [Step Debug] -> - -[63] [Step Debug] -> - -[63] [Step Debug] <- stop -i 15 -[63] [Step Debug] -> - -[63] [Step Debug] -> - -[63] Log closed at 2024-10-22 15:51:31.861877 - -[74] Log opened at 2024-10-22 15:51:37.623780 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-22 15:51:39.396889 - -[74] Log opened at 2024-10-22 15:51:39.614324 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-22 15:51:40.276557 - -[80] Log opened at 2024-10-22 15:51:40.681764 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-22 15:51:40.784770 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] Log opened at 2024-10-22 15:51:40.791742 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 15:51:41.786552 - -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-22 15:51:42.359099 - -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 15:51:42.705862 - -[79] Log opened at 2024-10-22 15:51:42.756002 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-22 15:51:44.240041 - -[80] Log opened at 2024-10-22 15:51:44.276528 -[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-22 15:51:44.356212 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[80] Log closed at 2024-10-22 15:51:45.445250 - -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-22 15:51:48.941896 - -[63] Log opened at 2024-10-22 15:52:13.707374 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 15:52:15.356768 - -[63] Log opened at 2024-10-22 15:52:15.557148 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 15:52:16.213963 - -[76] Log opened at 2024-10-22 15:52:16.590759 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-22 15:52:16.706077 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] Log opened at 2024-10-22 15:52:16.713019 -[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 15:52:17.678063 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 15:52:18.256074 - -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[74] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[74] Log closed at 2024-10-22 15:52:18.601456 - -[72] Log opened at 2024-10-22 15:52:18.648263 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 15:52:20.054179 - -[76] Log opened at 2024-10-22 15:52:20.088923 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-22 15:52:20.149590 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 15:52:21.317330 - -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 15:52:25.166493 - -[78] Log opened at 2024-10-22 15:52:40.838418 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-22 15:52:42.611138 - -[78] Log opened at 2024-10-22 15:52:42.868169 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-22 15:52:43.526832 - -[84] Log opened at 2024-10-22 15:52:43.931575 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-22 15:52:44.069183 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] Log opened at 2024-10-22 15:52:44.112188 -[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 15:52:45.052948 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 15:52:45.652736 - -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[83] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[83] Log closed at 2024-10-22 15:52:46.016492 - -[82] Log opened at 2024-10-22 15:52:46.062871 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 15:52:47.604549 - -[84] Log opened at 2024-10-22 15:52:47.647044 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-22 15:52:47.736394 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 15:52:48.721995 - -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 15:52:52.594848 - -[72] Log opened at 2024-10-22 16:01:01.071506 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:01:02.799682 - -[72] Log opened at 2024-10-22 16:01:03.036081 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:01:03.692207 - -[76] Log opened at 2024-10-22 16:01:04.322915 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-22 16:01:04.440956 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] Log opened at 2024-10-22 16:01:04.452946 -[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 16:01:05.430255 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:01:06.037104 - -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[79] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[79] Log closed at 2024-10-22 16:01:06.378967 - -[76] Log opened at 2024-10-22 16:01:06.426297 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:01:07.995761 - -[76] Log opened at 2024-10-22 16:01:08.035368 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] Log opened at 2024-10-22 16:01:08.102669 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:01:09.106332 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 16:01:12.614740 - -[63] Log opened at 2024-10-22 16:01:14.247361 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 16:01:21.133530 - -[82] Log opened at 2024-10-22 16:03:13.645165 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:03:15.455261 - -[82] Log opened at 2024-10-22 16:03:15.724067 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:03:16.390444 - -[78] Log opened at 2024-10-22 16:03:16.859530 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-22 16:03:16.869767 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] Log opened at 2024-10-22 16:03:16.881078 -[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:03:17.911045 - -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-22 16:03:18.511891 - -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[86] Log closed at 2024-10-22 16:03:18.858207 - -[81] Log opened at 2024-10-22 16:03:18.901914 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:03:20.503290 - -[78] Log opened at 2024-10-22 16:03:20.551774 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] Log opened at 2024-10-22 16:03:20.649149 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-22 16:03:21.672490 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:03:25.178234 - -[81] Log opened at 2024-10-22 16:03:26.799859 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:03:34.363256 - -[63] Log opened at 2024-10-22 16:05:23.835111 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 16:05:25.611443 - -[63] Log opened at 2024-10-22 16:05:25.848215 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 16:05:26.519999 - -[72] Log opened at 2024-10-22 16:05:27.079797 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-22 16:05:27.081298 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:05:28.064529 - -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:05:28.713316 - -[81] Log opened at 2024-10-22 16:05:53.582553 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:05:55.320186 - -[81] Log opened at 2024-10-22 16:05:55.574467 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:05:56.250007 - -[63] Log opened at 2024-10-22 16:05:56.695323 -[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] Log opened at 2024-10-22 16:05:56.794914 -[85] Log opened at 2024-10-22 16:05:56.794909 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:05:57.807016 - -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[63] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[63] Log closed at 2024-10-22 16:05:58.446438 - -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-22 16:05:58.787978 - -[84] Log opened at 2024-10-22 16:05:58.837133 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:06:00.360845 - -[72] Log opened at 2024-10-22 16:06:19.086126 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:06:20.820026 - -[72] Log opened at 2024-10-22 16:06:21.032581 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:06:21.689967 - -[81] Log opened at 2024-10-22 16:06:22.047011 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] Log opened at 2024-10-22 16:06:22.139350 -[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-22 16:06:22.142474 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[89] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[89] Log closed at 2024-10-22 16:06:23.101232 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:06:23.771469 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:06:24.109331 - -[78] Log opened at 2024-10-22 16:06:24.152910 -[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[78] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[78] Log closed at 2024-10-22 16:06:25.694352 - -[81] Log opened at 2024-10-22 16:06:25.727084 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:06:26.867042 - -[82] Log opened at 2024-10-22 16:07:41.318447 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:07:43.291570 - -[82] Log opened at 2024-10-22 16:07:43.531079 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:07:44.231025 - -[85] Log opened at 2024-10-22 16:07:44.719425 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-22 16:07:44.766318 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] Log opened at 2024-10-22 16:07:44.767279 -[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:07:45.787049 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:07:46.450265 - -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[90] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[90] Log closed at 2024-10-22 16:07:46.801811 - -[76] Log opened at 2024-10-22 16:07:46.865296 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:07:48.549993 - -[85] Log opened at 2024-10-22 16:07:48.582069 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:07:49.846888 - -[88] Log opened at 2024-10-22 16:08:01.205955 -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-22 16:08:03.029621 - -[88] Log opened at 2024-10-22 16:08:03.292830 -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-22 16:08:03.967809 - -[84] Log opened at 2024-10-22 16:08:04.337851 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-22 16:08:04.471956 -[82] Log opened at 2024-10-22 16:08:04.471956 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:08:05.480693 - -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:08:06.163216 - -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:08:06.526988 - -[91] Log opened at 2024-10-22 16:08:06.577769 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-22 16:08:08.194383 - -[76] Log opened at 2024-10-22 16:29:38.527002 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:29:41.092210 - -[76] Log opened at 2024-10-22 16:29:41.347527 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-22 16:29:41.362368 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:29:42.030694 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] Log opened at 2024-10-22 16:29:42.334388 -[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:29:42.464472 - -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log opened at 2024-10-22 16:29:42.541353 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] Log opened at 2024-10-22 16:29:42.547878 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:29:43.551337 - -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[91] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[91] Log closed at 2024-10-22 16:29:44.182168 - -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:29:44.530311 - -[72] Log opened at 2024-10-22 16:29:44.592764 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:29:46.079452 - -[72] Log opened at 2024-10-22 16:29:46.120578 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:29:47.256091 - -[72] Log opened at 2024-10-22 16:29:50.628471 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:29:54.955446 - -[72] Log opened at 2024-10-22 16:29:57.229221 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:30:04.392085 - -[88] Log opened at 2024-10-22 16:31:54.632492 -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-22 16:31:56.419272 - -[88] Log opened at 2024-10-22 16:31:56.677552 -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] Log opened at 2024-10-22 16:31:56.678365 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:31:57.351633 - -[85] Log opened at 2024-10-22 16:31:57.757046 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] Log opened at 2024-10-22 16:31:57.950045 -[82] Log opened at 2024-10-22 16:31:57.950051 -[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-22 16:32:04.342498 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:32:04.790981 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:32:05.361986 - -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[82] Log closed at 2024-10-22 16:32:05.731131 - -[85] Log opened at 2024-10-22 16:32:05.792467 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:32:07.250831 - -[84] Log opened at 2024-10-22 16:32:24.741888 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:32:25.879924 - -[84] Log opened at 2024-10-22 16:32:30.641245 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:32:34.988071 - -[92] Log opened at 2024-10-22 16:34:19.218245 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-22 16:34:21.007892 - -[92] Log opened at 2024-10-22 16:34:21.261206 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:34:21.262292 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:34:21.926200 - -[93] Log opened at 2024-10-22 16:34:22.323069 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:34:22.513807 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] Log opened at 2024-10-22 16:34:22.515984 -[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-22 16:34:28.808159 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:34:29.261665 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:34:29.875583 - -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[88] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[88] Log closed at 2024-10-22 16:34:30.216984 - -[93] Log opened at 2024-10-22 16:34:30.285311 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:34:32.744975 - -[93] Log opened at 2024-10-22 16:34:32.772257 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:34:32.832312 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:34:34.362257 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:34:38.591919 - -[84] Log opened at 2024-10-22 16:35:16.033722 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:35:17.781107 - -[84] Log opened at 2024-10-22 16:35:18.049210 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] Log opened at 2024-10-22 16:35:18.049823 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:35:18.708930 - -[81] Log opened at 2024-10-22 16:35:19.180397 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log opened at 2024-10-22 16:35:19.402215 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-22 16:35:19.405103 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:35:25.251137 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-22 16:35:25.709807 - -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:35:26.343182 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:35:26.693588 - -[81] Log opened at 2024-10-22 16:35:26.749426 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:35:28.184137 - -[81] Log opened at 2024-10-22 16:35:28.217897 -[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-22 16:35:28.311159 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[81] Log closed at 2024-10-22 16:35:29.317553 - -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-22 16:35:32.983555 - -[94] Log opened at 2024-10-22 16:39:11.557124 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:39:13.325299 - -[94] Log opened at 2024-10-22 16:39:13.600180 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:39:14.270600 - -[96] Log opened at 2024-10-22 16:39:14.668944 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-22 16:39:14.751461 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-22 16:39:14.779302 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:39:15.748019 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:39:16.388124 - -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:39:16.741650 - -[84] Log opened at 2024-10-22 16:39:16.796470 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:39:18.326819 - -[84] Log opened at 2024-10-22 16:39:22.778514 -[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-22 16:39:22.880355 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[84] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[84] Log closed at 2024-10-22 16:39:23.980694 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:39:32.530663 - -[97] Log opened at 2024-10-22 16:41:55.259394 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-22 16:41:57.024461 - -[97] Log opened at 2024-10-22 16:41:57.310584 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-22 16:41:57.970937 - -[72] Log opened at 2024-10-22 16:41:58.393692 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-22 16:41:58.496888 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:41:58.498011 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:41:59.538024 - -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:42:00.124919 - -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:42:00.474953 - -[96] Log opened at 2024-10-22 16:42:00.520657 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:42:02.062718 - -[72] Log opened at 2024-10-22 16:42:02.095884 -[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] Log opened at 2024-10-22 16:42:02.173506 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[72] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[72] Log closed at 2024-10-22 16:42:03.214957 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:42:06.595261 - -[93] Log opened at 2024-10-22 16:42:30.781295 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:42:33.156289 - -[93] Log opened at 2024-10-22 16:42:33.362988 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:42:34.036917 - -[95] Log opened at 2024-10-22 16:42:34.412009 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-22 16:42:34.518580 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] Log opened at 2024-10-22 16:42:34.518962 -[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:42:35.518770 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:42:36.155760 - -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[98] Log closed at 2024-10-22 16:42:36.497686 - -[97] Log opened at 2024-10-22 16:42:36.541946 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-22 16:42:37.986731 - -[95] Log opened at 2024-10-22 16:42:38.019676 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-22 16:42:38.085572 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-22 16:42:42.377821 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:42:42.770400 - -[76] Log opened at 2024-10-22 16:43:03.973443 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:43:05.756928 - -[76] Log opened at 2024-10-22 16:43:05.957709 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:43:06.628242 - -[85] Log opened at 2024-10-22 16:43:07.079639 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:43:07.162037 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] Log opened at 2024-10-22 16:43:07.162446 -[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:43:08.143634 - -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:43:08.757047 - -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[99] Log closed at 2024-10-22 16:43:09.169795 - -[85] Log opened at 2024-10-22 16:43:09.224603 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:43:10.757495 - -[85] Log opened at 2024-10-22 16:43:10.790310 -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:43:10.850498 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:43:12.039917 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:43:16.007186 - -[95] Log opened at 2024-10-22 16:43:27.776777 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:43:29.581026 - -[96] Log opened at 2024-10-22 16:43:29.796303 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:43:30.455564 - -[93] Log opened at 2024-10-22 16:43:30.821230 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] Log opened at 2024-10-22 16:43:30.927654 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] Log opened at 2024-10-22 16:43:30.942440 -[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-22 16:43:31.911399 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:43:32.515876 - -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[92] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[92] Log closed at 2024-10-22 16:43:32.851704 - -[76] Log opened at 2024-10-22 16:43:32.899043 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:43:34.338963 - -[93] Log opened at 2024-10-22 16:43:34.370167 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-22 16:43:34.436305 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:43:35.450426 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:43:39.552380 - -[94] Log opened at 2024-10-22 16:43:50.457992 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:43:52.211738 - -[94] Log opened at 2024-10-22 16:43:52.406367 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:43:53.063839 - -[96] Log opened at 2024-10-22 16:43:53.399911 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] Log opened at 2024-10-22 16:43:53.518702 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] Log opened at 2024-10-22 16:43:53.524289 -[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-22 16:43:54.511206 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:43:55.087735 - -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[97] Log closed at 2024-10-22 16:43:55.432682 - -[95] Log opened at 2024-10-22 16:43:55.481430 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:43:56.980546 - -[96] Log opened at 2024-10-22 16:43:57.011267 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-22 16:43:57.079275 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:43:58.100993 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:44:01.855631 - -[76] Log opened at 2024-10-22 16:44:28.543645 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:44:30.318367 - -[76] Log opened at 2024-10-22 16:44:30.596836 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:44:31.257670 - -[100] Log opened at 2024-10-22 16:44:31.619063 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:44:31.762402 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-22 16:44:31.808134 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:44:32.783944 - -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-22 16:44:33.389995 - -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-22 16:44:33.750143 - -[101] Log opened at 2024-10-22 16:44:33.847523 -[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[101] Log closed at 2024-10-22 16:44:35.265597 - -[100] Log opened at 2024-10-22 16:44:35.319373 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-22 16:44:36.421226 - -[96] Log opened at 2024-10-22 16:44:42.074851 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:44:46.633869 - -[93] Log opened at 2024-10-22 16:44:55.423979 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:44:57.288722 - -[93] Log opened at 2024-10-22 16:44:57.590115 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:44:58.250873 - -[94] Log opened at 2024-10-22 16:44:58.631350 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] Log opened at 2024-10-22 16:44:58.753733 -[76] Log opened at 2024-10-22 16:44:58.753731 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:44:59.782869 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:45:00.345326 - -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[85] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[85] Log closed at 2024-10-22 16:45:00.685943 - -[103] Log opened at 2024-10-22 16:45:00.732035 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:45:02.170302 - -[94] Log opened at 2024-10-22 16:45:02.201784 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-22 16:45:02.269771 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:45:03.321714 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:45:07.058776 - -[96] Log opened at 2024-10-22 16:45:55.485046 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:45:57.232427 - -[96] Log opened at 2024-10-22 16:45:57.465322 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:45:58.125818 - -[76] Log opened at 2024-10-22 16:45:58.515742 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-22 16:45:58.629653 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] Log opened at 2024-10-22 16:45:58.630508 -[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:45:59.594826 - -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:46:00.162333 - -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[102] Log closed at 2024-10-22 16:46:00.503260 - -[93] Log opened at 2024-10-22 16:46:00.549793 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:46:02.076780 - -[76] Log opened at 2024-10-22 16:46:02.113060 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] Log opened at 2024-10-22 16:46:02.179498 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:46:03.202577 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:46:07.084310 - -[103] Log opened at 2024-10-22 16:47:08.651376 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:47:10.364202 - -[103] Log opened at 2024-10-22 16:47:10.598138 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:47:11.261108 - -[96] Log opened at 2024-10-22 16:47:11.741030 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-22 16:47:11.899256 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-22 16:47:11.905522 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:47:12.848468 - -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:47:13.473624 - -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 16:47:13.823591 - -[96] Log opened at 2024-10-22 16:47:13.866622 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:47:15.324280 - -[96] Log opened at 2024-10-22 16:47:15.355767 -[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-22 16:47:15.420103 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[96] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[96] Log closed at 2024-10-22 16:47:16.475615 - -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:47:20.061608 - -[76] Log opened at 2024-10-22 16:47:34.345403 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:47:42.069248 - -[94] Log opened at 2024-10-22 16:48:05.329338 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:48:07.024293 - -[94] Log opened at 2024-10-22 16:48:07.233830 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:48:07.893884 - -[104] Log opened at 2024-10-22 16:48:08.266265 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-22 16:48:08.370015 -[95] Log opened at 2024-10-22 16:48:08.370015 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:48:09.355469 - -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 16:48:09.942486 - -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:48:10.288252 - -[100] Log opened at 2024-10-22 16:48:10.348893 -[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[100] Log closed at 2024-10-22 16:48:11.798947 - -[104] Log opened at 2024-10-22 16:48:11.831459 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 16:48:12.944663 - -[105] Log opened at 2024-10-22 16:48:18.495015 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:48:24.023533 - -[93] Log opened at 2024-10-22 16:48:44.064514 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:48:45.763354 - -[93] Log opened at 2024-10-22 16:48:45.966099 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:48:46.629596 - -[106] Log opened at 2024-10-22 16:48:47.483905 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:48:47.635532 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-22 16:48:47.641522 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:48:48.681507 - -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-22 16:48:49.268765 - -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:48:49.605324 - -[106] Log opened at 2024-10-22 16:48:49.657227 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-22 16:48:51.111602 - -[106] Log opened at 2024-10-22 16:48:51.140158 -[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] Log opened at 2024-10-22 16:48:51.214794 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[106] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[106] Log closed at 2024-10-22 16:48:52.212716 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:48:55.924195 - -[94] Log opened at 2024-10-22 16:48:59.323090 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:49:06.561492 - -[76] Log opened at 2024-10-22 16:51:05.455664 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:51:07.169380 - -[108] Log opened at 2024-10-22 16:51:07.420494 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-22 16:51:08.093708 - -[107] Log opened at 2024-10-22 16:51:08.583218 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-22 16:51:08.634367 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] Log opened at 2024-10-22 16:51:08.643558 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-22 16:51:09.759067 - -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-22 16:51:10.375815 - -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:51:10.738484 - -[95] Log opened at 2024-10-22 16:51:10.788648 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:51:12.321380 - -[107] Log opened at 2024-10-22 16:51:12.358716 -[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-22 16:51:12.432688 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[107] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[107] Log closed at 2024-10-22 16:51:13.509477 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:51:17.281914 - -[105] Log opened at 2024-10-22 16:53:05.189138 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:53:06.912566 - -[105] Log opened at 2024-10-22 16:53:07.173516 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:53:07.838252 - -[109] Log opened at 2024-10-22 16:53:08.338816 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log opened at 2024-10-22 16:53:08.541046 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] Log opened at 2024-10-22 16:53:08.548188 -[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:53:09.534989 - -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-22 16:53:10.165474 - -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[76] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[76] Log closed at 2024-10-22 16:53:10.507019 - -[109] Log opened at 2024-10-22 16:53:10.564159 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-22 16:53:12.053798 - -[109] Log opened at 2024-10-22 16:53:12.094215 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-22 16:53:12.160836 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-22 16:53:13.225964 - -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:53:16.726002 - -[94] Log opened at 2024-10-22 16:56:33.327361 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:56:35.056475 - -[94] Log opened at 2024-10-22 16:56:35.303194 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:56:35.968280 - -[93] Log opened at 2024-10-22 16:56:36.354510 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] Log opened at 2024-10-22 16:56:36.525804 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-22 16:56:36.541302 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:56:37.546488 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:56:38.114447 - -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-22 16:56:38.459736 - -[108] Log opened at 2024-10-22 16:56:38.515772 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-22 16:56:40.083343 - -[93] Log opened at 2024-10-22 16:56:40.115176 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] Log opened at 2024-10-22 16:56:40.183859 -[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:56:41.168242 - -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[108] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[108] Log closed at 2024-10-22 16:56:45.080474 - -[111] Log opened at 2024-10-22 16:58:34.798351 -[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] Log closed at 2024-10-22 16:58:36.565844 - -[111] Log opened at 2024-10-22 16:58:36.927964 -[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] Log closed at 2024-10-22 16:58:37.597481 - -[105] Log opened at 2024-10-22 16:58:37.945284 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] Log opened at 2024-10-22 16:58:38.132314 -[110] Log opened at 2024-10-22 16:58:38.132342 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:58:39.110021 - -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:58:39.705691 - -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-22 16:58:40.049430 - -[104] Log opened at 2024-10-22 16:58:40.100008 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 16:58:41.672625 - -[105] Log opened at 2024-10-22 16:58:41.710077 -[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-22 16:58:41.798977 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[105] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[105] Log closed at 2024-10-22 16:58:42.809751 - -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 16:58:46.459689 - -[95] Log opened at 2024-10-22 16:59:13.200447 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:59:14.907026 - -[95] Log opened at 2024-10-22 16:59:15.184521 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:59:15.849838 - -[94] Log opened at 2024-10-22 16:59:16.268049 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] Log opened at 2024-10-22 16:59:16.442128 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[93] Log opened at 2024-10-22 16:59:16.442128 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-22 16:59:17.427220 - -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:59:18.033681 - -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:59:18.374236 - -[112] Log opened at 2024-10-22 16:59:18.429202 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-22 16:59:19.966939 - -[94] Log opened at 2024-10-22 16:59:20.007404 -[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] Log opened at 2024-10-22 16:59:20.085861 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[94] Log closed at 2024-10-22 16:59:21.156146 - -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-22 16:59:24.898214 - -[103] Log opened at 2024-10-22 16:59:50.796223 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:59:52.603557 - -[103] Log opened at 2024-10-22 16:59:52.851656 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 16:59:53.516452 - -[110] Log opened at 2024-10-22 16:59:54.314522 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] Log opened at 2024-10-22 16:59:54.505943 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] Log opened at 2024-10-22 16:59:54.506350 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] Log closed at 2024-10-22 16:59:55.525485 - -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-22 16:59:56.142809 - -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 16:59:56.522365 - -[95] Log opened at 2024-10-22 16:59:56.626854 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 16:59:58.115269 - -[110] Log opened at 2024-10-22 16:59:58.166661 -[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-22 16:59:58.244191 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[110] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[110] Log closed at 2024-10-22 16:59:59.276571 - -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 17:00:02.824321 - -[109] Log opened at 2024-10-22 17:06:03.129689 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-22 17:06:04.867321 - -[109] Log opened at 2024-10-22 17:06:05.128756 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-22 17:06:05.787139 - -[93] Log opened at 2024-10-22 17:06:06.217682 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] Log opened at 2024-10-22 17:06:06.345542 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] Log opened at 2024-10-22 17:06:06.345953 -[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] Log closed at 2024-10-22 17:06:07.367519 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 17:06:07.963488 - -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[111] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[111] Log closed at 2024-10-22 17:06:08.294531 - -[114] Log opened at 2024-10-22 17:06:08.353712 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-22 17:06:09.915810 - -[93] Log opened at 2024-10-22 17:06:09.951628 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] Log opened at 2024-10-22 17:06:10.021931 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 17:06:11.090536 - -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-22 17:06:14.661271 - -[112] Log opened at 2024-10-22 17:07:50.859149 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-22 17:07:52.605864 - -[112] Log opened at 2024-10-22 17:07:52.847009 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-22 17:07:53.510312 - -[109] Log opened at 2024-10-22 17:07:54.075280 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] Log opened at 2024-10-22 17:07:54.144355 -[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] Log opened at 2024-10-22 17:07:54.157073 -[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[103] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[103] Log closed at 2024-10-22 17:07:55.156550 - -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-22 17:07:55.821193 - -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[113] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[113] Log closed at 2024-10-22 17:07:56.166917 - -[104] Log opened at 2024-10-22 17:07:56.226386 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 17:07:57.758523 - -[109] Log opened at 2024-10-22 17:07:57.797826 -[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] Log opened at 2024-10-22 17:07:57.898499 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[109] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[109] Log closed at 2024-10-22 17:07:58.930512 - -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 17:08:02.625501 - -[114] Log opened at 2024-10-22 17:09:10.780599 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-22 17:09:12.612436 - -[114] Log opened at 2024-10-22 17:09:12.926059 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-22 17:09:13.588119 - -[112] Log opened at 2024-10-22 17:09:13.995295 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] Log opened at 2024-10-22 17:09:14.077572 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] Log opened at 2024-10-22 17:09:14.096556 -[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] Log closed at 2024-10-22 17:09:15.068030 - -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-22 17:09:15.671985 - -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[95] Log closed at 2024-10-22 17:09:16.065949 - -[115] Log opened at 2024-10-22 17:09:16.162000 -[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] Log closed at 2024-10-22 17:09:17.628235 - -[112] Log opened at 2024-10-22 17:09:17.692900 -[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[112] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[112] Log closed at 2024-10-22 17:09:18.778355 - -[115] Log opened at 2024-10-22 17:09:21.097120 -[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[115] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[115] Log closed at 2024-10-22 17:09:25.623205 - -[104] Log opened at 2024-10-22 17:11:09.797129 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 17:11:11.541723 - -[104] Log opened at 2024-10-22 17:11:11.770586 -[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[104] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[104] Log closed at 2024-10-22 17:11:12.434262 - -[116] Log opened at 2024-10-22 17:11:12.968955 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] Log opened at 2024-10-22 17:11:13.042781 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] Log opened at 2024-10-22 17:11:13.043955 -[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 17:11:14.026502 - -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] Log closed at 2024-10-22 17:11:14.624407 - -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[114] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[114] Log closed at 2024-10-22 17:11:14.962025 - -[116] Log opened at 2024-10-22 17:11:15.006831 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] Log closed at 2024-10-22 17:11:16.529865 - -[116] Log opened at 2024-10-22 17:11:16.569215 -[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] Log opened at 2024-10-22 17:11:16.651819 -[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[116] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[116] Log closed at 2024-10-22 17:11:17.683878 - -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[93] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[93] Log closed at 2024-10-22 17:11:21.324215 - From 5e2d37ed2602b04569d109df2f061ecbb5164278 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Wed, 23 Oct 2024 05:10:33 +0000 Subject: [PATCH 4/5] add xdeubg --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2740fefd..0af4bfd9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ ci4/.env .vscode/ -xdebug.log \ No newline at end of file +xdebug.log +xdebug.* From a3561d76231a40ff9b5b4ffa74deafa847250f61 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Wed, 23 Oct 2024 05:14:04 +0000 Subject: [PATCH 5/5] add mensajeria module to presupuesto cliente edit --- ci4/app/Controllers/Presupuestos/Presupuestocliente.php | 2 +- .../form/presupuestos/cliente/viewPresupuestoclienteForm.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 0d656c75..72d4370f 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -156,7 +156,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $this->model->removeIsDuplicado($presupuestoEntity->id); } - + $this->viewData['presupuestoId'] = $presupuestoEntity->id; $this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . $this->viewData['pageTitle'] . ' ' . lang('Basic.global.edit3'); return $this->displayForm(__METHOD__, $id); diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php index 7bd2e9ea..0e059585 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php @@ -132,8 +132,7 @@ - $presupuestoEntity->id]) - ?> */?> + $presupuestoId,"type" => "presupuesto"]) ?>