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

Commit 48a423f0 authored by Lorenzo Colitti's avatar Lorenzo Colitti
Browse files

Remove "returning Blocked NetworkInfo" logspam.

Bug: 20006730
Change-Id: I2061127e3c7283c0a4899940d3fc224ca114f754
parent be843e83
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -908,14 +908,14 @@ public class ConnectivityService extends IConnectivityManager.Stub
            // network is blocked; clone and override state
            info = new NetworkInfo(info);
            info.setDetailedState(DetailedState.BLOCKED, null, null);
            if (DBG) {
            if (VDBG) {
                log("returning Blocked NetworkInfo for ifname=" +
                        lp.getInterfaceName() + ", uid=" + uid);
            }
        }
        if (info != null && mLockdownTracker != null) {
            info = mLockdownTracker.augmentNetworkInfo(info);
            if (DBG) log("returning Locked NetworkInfo");
            if (VDBG) log("returning Locked NetworkInfo");
        }
        return info;
    }