Add debug print for channel frequency in get_clients_on_channel
This commit is contained in:
parent
5d884d99bb
commit
ac94b59649
1 changed files with 3 additions and 0 deletions
|
@ -109,6 +109,9 @@ def get_clients_on_channel(capture, ap_channel, ap_bssid):
|
|||
except ValueError:
|
||||
print(f"[!] Could not parse channel number: {ap_channel}")
|
||||
|
||||
# Print the channel frequency for debugging
|
||||
print(f"Channel: {ap_channel}")
|
||||
|
||||
from_channel_freq = get_channel_from_freq(ap_channel)
|
||||
if not from_channel_freq:
|
||||
print(f"[!] Invalid channel: {ap_channel}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue