publish eve_orehold_watcher.py

This commit is contained in:
brockdarnold 2026-06-15 01:19:01 +00:00
parent d354ae1565
commit c769680457

View file

@ -56,13 +56,9 @@ CONFIG_PATH = os.path.join(HERE, "config.ini")
def heartbeat(cp, source): def heartbeat(cp, source):
"""Show 'watcher online' by EDITING one message per source (no spam on restart). """No-op in Discord — 'watcher online' pings were non-information spam. Watchers
Defined here so every watcher (all import this module) shares it.""" being up is evident from the actual alerts/status. Kept as a local log line only."""
try: print(f"[{source}] online")
host = socket.gethostname()
except Exception:
host = "PC"
_discord_live(cp, f"hb_{source}", "🟢 Watcher online", f"`{source}` on **{host}**")
# --------------------------------------------------------------------------- # # --------------------------------------------------------------------------- #