diff --git a/listener.py b/listener.py index 45babe2..3dae008 100755 --- a/listener.py +++ b/listener.py @@ -233,9 +233,6 @@ def channel_hopper(interface): time.sleep(CHANNEL_HOP_INTERVAL) def is_deadpoint(ap_bssid): - # Once again for debugging, pretty-print APs with no clients - if ap_bssid not in ap_clients: - print(f"[!] Deadpoint detected: {ap_bssid} (no clients)") return sum(ap_clients[ap_bssid].values()) < 2 # No meaningful client interaction # === Main ===