From: Bdale Garbee Date: Mon, 26 May 2025 21:22:45 +0000 (-0600) Subject: turn off console logging of arm/disarm button clicks X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=5931e342ae0761c9264aa6082643d04e828d1822;p=fw%2Fquantimotor turn off console logging of arm/disarm button clicks --- 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); }