Added Set Log Level Commands

This commit is contained in:
2025-10-23 09:34:44 +03:00
parent 470d7bfacc
commit d1835beff5
7 changed files with 199 additions and 9 deletions

View File

@@ -259,7 +259,7 @@ void BellEngine::activateNote(uint16_t note) {
if (bellConfig == 0) continue;
// Convert 1-indexed config to 0-indexed bellIndex
uint8_t bellIndex = bellConfig-1;
uint8_t bellIndex = bellConfig - 1;
// Additional safety check to prevent underflow crashes
if (bellIndex >= 255) {
@@ -311,7 +311,8 @@ void BellEngine::activateNote(uint16_t note) {
LOG_VERBOSE("🔥🔥 BATCH FIRED %d bells SIMULTANEOUSLY!", bellDurations.size());
// 🔔 NOTIFY WEBSOCKET CLIENTS OF BELL DINGS!
notifyBellsFired(firedBellIndices);
// * deactivated currently, since unstable and causes performance issues *
// notifyBellsFired(firedBellIndices);
}
}