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

Commit a52800a1 authored by Erik Kline's avatar Erik Kline Committed by Android (Google) Code Review
Browse files

Merge "Add the network handle to the NetworkAgentInfo#toString() output."

parents 750d0f0c 230d5ca4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -248,10 +248,10 @@ public class NetworkAgentInfo implements Comparable<NetworkAgentInfo> {
    }

    public String toString() {
        return "NetworkAgentInfo{ ni{" + networkInfo + "}  network{" +
                network + "}  lp{" +
                linkProperties + "}  nc{" +
                networkCapabilities + "}  Score{" + getCurrentScore() + "}  " +
        return "NetworkAgentInfo{ ni{" + networkInfo + "}  " +
                "network{" + network + "}  nethandle{" + network.getNetworkHandle() + "}  " +
                "lp{" + linkProperties + "}  " +
                "nc{" + networkCapabilities + "}  Score{" + getCurrentScore() + "}  " +
                "everValidated{" + everValidated + "}  lastValidated{" + lastValidated + "}  " +
                "created{" + created + "} lingering{" + lingering + "} " +
                "explicitlySelected{" + networkMisc.explicitlySelected + "} " +