Merge "Add debug logging to requestRouteToHostAddress."

This commit is contained in:
Lorenzo Colitti
2021-04-12 14:24:58 +00:00
committed by Gerrit Code Review

View File

@@ -2260,7 +2260,9 @@ public class ConnectivityService extends IConnectivityManager.Stub
netId = nai.network.getNetId();
}
boolean ok = addLegacyRouteToHost(lp, addr, netId, uid);
if (DBG) log("requestRouteToHostAddress ok=" + ok);
if (DBG) {
log("requestRouteToHostAddress " + addr + nai.toShortString() + " ok=" + ok);
}
return ok;
} finally {
Binder.restoreCallingIdentity(token);