wifi: Remove scanning log message

This commit is contained in:
Jordan Ruthe 2021-02-26 10:59:13 -05:00
parent 988608f9d3
commit f3001f3c76

View File

@ -146,7 +146,6 @@ class WifiManager(Thread):
self.networks_in_supplicant.append(network)
def scan(self, interface='wlan0'):
logging.debug("Scanning %s" % interface)
p = subprocess.Popen(["sudo","iwlist",interface,"scan"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
aps = self.parse(p.stdout.read().decode('utf-8'))
cur_info = self.get_current_wifi()