From 5931e342ae0761c9264aa6082643d04e828d1822 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Mon, 26 May 2025 15:22:45 -0600 Subject: [PATCH] turn off console logging of arm/disarm button clicks --- ui/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/index.html b/ui/index.html index 1b5effc..f99fe8e 100644 --- a/ui/index.html +++ b/ui/index.html @@ -49,7 +49,7 @@ var jsonString = '{"request": "disarm"}'; document.querySelector('#ArmButton').textContent = 'Arm'; } - console.log({ armreq }); + // console.log({ armreq }); const fetchOptions = { method: "POST", headers: { @@ -58,7 +58,7 @@ }, body: jsonString, }; - console.log({ fetchOptions }); + // console.log({ fetchOptions }); const response = fetch("/armsystem", fetchOptions); } -- 2.47.2