Snap for 6557338 from 9b75996d5e757dc275456839df3dc3346a592bab to rvc-release

Change-Id: I0f2203ba56adaa39568d546d4b3df67a28ff98cc
This commit is contained in:
android-build-team Robot
2020-06-04 01:11:51 +00:00

View File

@@ -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));
}
/**