From ee379d080aebef3a57bfcd687c7372ffaf4dfd23 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Thu, 24 Apr 2025 13:57:22 +0100 Subject: [PATCH] chore: Remove remaining diagnostic logs --- src/public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app.js b/src/public/app.js index cea4b0d82..7dbc755c3 100644 --- a/src/public/app.js +++ b/src/public/app.js @@ -885,7 +885,7 @@ document.addEventListener('DOMContentLoaded', function() { // ---> Keep Ensure history exists check <--- if (!dashboardHistory[guest.vmid] || !Array.isArray(dashboardHistory[guest.vmid])) { - console.log(`[processGuest - ${guest.vmid}] Initializing/Resetting history array.`); + // console.log(`[processGuest - ${guest.vmid}] Initializing/Resetting history array.`); // REMOVED THIS LOG dashboardHistory[guest.vmid] = []; } // ---> END SECTION <---