am 50e55480: Merge "Remove "returning Blocked NetworkInfo" logspam." into mnc-dev

* commit '50e554808b1d8dde6e6c6aeb608551ce8a0d8180':
  Remove "returning Blocked NetworkInfo" logspam.
This commit is contained in:
Lorenzo Colitti
2015-06-05 08:02:55 +00:00
committed by Android Git Automerger

View File

@@ -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;
}