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

Commit 83f0f755 authored by Robert Greenwalt's avatar Robert Greenwalt
Browse files

Add Logging around getNetworkInfo.

bug:16610051
Change-Id: I04f19efc99bce6d990364291b6cd8105f08ab263
parent a793a671
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -838,9 +838,11 @@ public class ConnectivityService extends IConnectivityManager.Stub {
            // network is blocked; clone and override state
            info = new NetworkInfo(info);
            info.setDetailedState(DetailedState.BLOCKED, null, null);
            if (VDBG) log("returning Blocked NetworkInfo");
        }
        if (mLockdownTracker != null) {
            info = mLockdownTracker.augmentNetworkInfo(info);
            if (VDBG) log("returning Locked NetworkInfo");
        }
        return info;
    }