We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b82a15e commit f80d58aCopy full SHA for f80d58a
core/services/wifi/wifi_handlers/wpa_supplicant/Hotspot.py
@@ -176,7 +176,8 @@ def start(self) -> None:
176
time.sleep(3)
177
if not self.is_running():
178
exit_code = self._subprocess.returncode
179
- raise RuntimeError(f"Failed to initialize Hostapd ({exit_code}).")
+ stdout, _ = self._subprocess.communicate()
180
+ raise RuntimeError(f"Failed to initialize Hostapd ({exit_code}). Output: {stdout}")
181
if not self._dhcp_server:
182
self._dhcp_server = DHCPServerManager(self._ap_interface_name, self._ipv4_gateway)
183
return
0 commit comments