Remove debug print statement for AP clients in deadpoint check

This commit is contained in:
Yaro Kasear 2025-05-02 09:45:32 -05:00
parent fc1fdd4423
commit b7864a537e

View file

@ -234,8 +234,6 @@ def channel_hopper(interface):
time.sleep(CHANNEL_HOP_INTERVAL)
def is_deadpoint(ap_bssid):
# For debuggibg purposes, pretty-print each AP's clients
print(f"[+] AP {ap_bssid} clients: {ap_clients[ap_bssid]}")
return sum(ap_clients[ap_bssid].values()) < 2 # No meaningful client interaction
# === Main ===