Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2399384 authored by mukesh agrawal's avatar mukesh agrawal Committed by Mukesh Agrawal
Browse files

WifiConfiguration: show more detail in toString()

When debugging WiFi issues, it's helpful to know whether
or not a network uses a hidden SSID. Update
WifiConfiguration.toString(), to provide this information.

BUG=26836097
TEST=capture bugreport, verify "HIDDEN: false" is present for normal net
TEST=capture bugreport, verify "HIDDEN: true" is present for hidden net

Change-Id: I1f7c587fc2eda358e0868e9a7ef0bb2058e726a8
parent b9df1109
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -1356,6 +1356,7 @@ public class WifiConfiguration implements Parcelable {
                append(" PROVIDER-NAME: ").append(this.providerFriendlyName).
                append(" PROVIDER-NAME: ").append(this.providerFriendlyName).
                append(" BSSID: ").append(this.BSSID).append(" FQDN: ").append(this.FQDN)
                append(" BSSID: ").append(this.BSSID).append(" FQDN: ").append(this.FQDN)
                .append(" PRIO: ").append(this.priority)
                .append(" PRIO: ").append(this.priority)
                .append(" HIDDEN: ").append(this.hiddenSSID)
                .append('\n');
                .append('\n');