From 6402f895f13a5d1b43c7934e6f5fcda67bddc8fb Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Thu, 24 Apr 2025 16:11:53 +0100 Subject: [PATCH] revert: Remove potentially problematic maxcpu debug log --- server/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/index.js b/server/index.js index d6f28b28c..e9ec11d5b 100644 --- a/server/index.js +++ b/server/index.js @@ -851,9 +851,6 @@ async function fetchDiscoveryData() { // Merge node status if available if (result.value.nodeStatus) { const statusData = result.value.nodeStatus; - // ---- START DEBUG LOG ---- - console.log(`[Discovery Cycle - ${endpointName}] Merging status for node ${correspondingNodeName}. MaxCPU from API:`, statusData.maxcpu); - // ---- END DEBUG LOG ---- // Merge specific fields we care about endpointNodes[targetNodeIndex].cpu = statusData.cpu; endpointNodes[targetNodeIndex].maxcpu = statusData.maxcpu; // Added maxcpu