Merge "Disable log for per uid blocked status changed event" am: d66468ca25 am: 528f5debe1

Original change: undetermined

Change-Id: I2783cc948365a37b7446064cfc00714ab6abba17
This commit is contained in:
Junyu Lai
2020-06-02 10:06:42 +00:00
committed by Automerger Merge Worker

View File

@@ -1374,10 +1374,9 @@ public class ConnectivityService extends IConnectivityManager.Stub
if (nri == null || net == null || !LOGD_BLOCKED_NETWORKINFO) { if (nri == null || net == null || !LOGD_BLOCKED_NETWORKINFO) {
return; return;
} }
String action = blocked ? "BLOCKED" : "UNBLOCKED"; final String action = blocked ? "BLOCKED" : "UNBLOCKED";
log(String.format("Blocked status changed to %s for %d(%d) on netId %d", blocked, mNetworkInfoBlockingLogs.log(String.format(
nri.mUid, nri.request.requestId, net.netId)); "%s %d(%d) on netId %d", action, nri.mUid, nri.request.requestId, net.netId));
mNetworkInfoBlockingLogs.log(action + " " + nri.mUid);
} }
/** /**