Revert of Ifd0c4081a. Turning off logging.

Found our bug, so switching the logging back off.
bug:8377625

Change-Id: I254bd83c48f1dd8dd62db1fcb162d460328169c5
This commit is contained in:
Robert Greenwalt
2013-03-15 13:17:11 -07:00
parent f338508972
commit fe86530b37

View File

@@ -20,7 +20,6 @@ import android.net.ProxyProperties;
import android.os.Parcelable; import android.os.Parcelable;
import android.os.Parcel; import android.os.Parcel;
import android.text.TextUtils; import android.text.TextUtils;
import android.util.Log;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.Inet4Address; import java.net.Inet4Address;
@@ -66,7 +65,6 @@ public class LinkProperties implements Parcelable {
private String mDomains; private String mDomains;
private Collection<RouteInfo> mRoutes = new ArrayList<RouteInfo>(); private Collection<RouteInfo> mRoutes = new ArrayList<RouteInfo>();
private ProxyProperties mHttpProxy; private ProxyProperties mHttpProxy;
public boolean mLogMe;
// Stores the properties of links that are "stacked" above this link. // Stores the properties of links that are "stacked" above this link.
// Indexed by interface name to allow modification and to prevent duplicates being added. // Indexed by interface name to allow modification and to prevent duplicates being added.
@@ -90,7 +88,6 @@ public class LinkProperties implements Parcelable {
public LinkProperties() { public LinkProperties() {
clear(); clear();
mLogMe = false;
} }
// copy constructor instead of clone // copy constructor instead of clone
@@ -110,14 +107,6 @@ public class LinkProperties implements Parcelable {
} }
public void setInterfaceName(String iface) { public void setInterfaceName(String iface) {
if (mLogMe) {
Log.d("LinkProperties", "setInterfaceName from " + mIfaceName +
" to " + iface);
for (StackTraceElement e : Thread.currentThread().getStackTrace()) {
Log.d("LinkProperties", " " + e.toString());
}
}
mIfaceName = iface; mIfaceName = iface;
ArrayList<RouteInfo> newRoutes = new ArrayList<RouteInfo>(mRoutes.size()); ArrayList<RouteInfo> newRoutes = new ArrayList<RouteInfo>(mRoutes.size());
for (RouteInfo route : mRoutes) { for (RouteInfo route : mRoutes) {
@@ -248,13 +237,6 @@ public class LinkProperties implements Parcelable {
} }
public void clear() { public void clear() {
if (mLogMe) {
Log.d("LinkProperties", "clear from " + mIfaceName);
for (StackTraceElement e : Thread.currentThread().getStackTrace()) {
Log.d("LinkProperties", " " + e.toString());
}
}
mIfaceName = null; mIfaceName = null;
mLinkAddresses.clear(); mLinkAddresses.clear();
mDnses.clear(); mDnses.clear();