From d5a8880a2342a80fdbf44979aea6f1d49c8baea6 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 31 Jul 2024 19:45:05 -0700 Subject: [PATCH] Update system.py --- modules/system.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/system.py b/modules/system.py index a2415e5..0136b53 100644 --- a/modules/system.py +++ b/modules/system.py @@ -371,11 +371,15 @@ async def handleSignalWatcher(): send_message(msg, int(ch), 0, 1) if interface2_enabled: send_message(msg, int(ch), 0, 2) + else: + print(f"{log_timestamp()} System: antiSpam prevented Alert from Hamlib {msg}") else: if antiSpam and sigWatchBrodcastCh != publicChannel: send_message(msg, int(sigWatchBrodcastCh), 0, 1) if interface2_enabled: send_message(msg, int(sigWatchBrodcastCh), 0, 2) + else: + print(f"{log_timestamp()} System: antiSpam prevented Alert from Hamlib {msg}") await asyncio.sleep(1) pass