From 9e7fd608aa97feb79b63209a83ad9f0dbeafa177 Mon Sep 17 00:00:00 2001 From: Jason P Date: Wed, 7 Jan 2026 08:03:27 -0600 Subject: [PATCH] Add logging for actions --- src/input/ButtonThread.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/input/ButtonThread.cpp b/src/input/ButtonThread.cpp index 60b82b2e9..35dabc8b2 100644 --- a/src/input/ButtonThread.cpp +++ b/src/input/ButtonThread.cpp @@ -248,8 +248,10 @@ int32_t ButtonThread::runOnce() IF_SCREEN(if (!externalNotificationModule->getMute()) externalNotificationModule->stopNow();) } if (externalNotificationModule->getMute()) { + LOG_INFO("Temporarily Muted"); play4ClickDown(); // Disable tone } else { + LOG_INFO("Unmuted"); play4ClickUp(); // Enable tone } break;