Merge "Disable log for per uid blocked status changed event" am: 0aad631ab4 am: 3cabc6713f am: be3bc6e50e am: abd4c21b5b
Original change: undetermined Change-Id: Ib0d04da8d228984ef952f624a830b8d10333d8f4
This commit is contained in:
@@ -1374,10 +1374,9 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
||||
if (nri == null || net == null || !LOGD_BLOCKED_NETWORKINFO) {
|
||||
return;
|
||||
}
|
||||
String action = blocked ? "BLOCKED" : "UNBLOCKED";
|
||||
log(String.format("Blocked status changed to %s for %d(%d) on netId %d", blocked,
|
||||
nri.mUid, nri.request.requestId, net.netId));
|
||||
mNetworkInfoBlockingLogs.log(action + " " + nri.mUid);
|
||||
final String action = blocked ? "BLOCKED" : "UNBLOCKED";
|
||||
mNetworkInfoBlockingLogs.log(String.format(
|
||||
"%s %d(%d) on netId %d", action, nri.mUid, nri.request.requestId, net.netId));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user