Merge "Enable more logs for networking"
am: f3736d67f8
Change-Id: I422863512aa78849dcb5d61d986d7f8bbff24fd2
This commit is contained in:
@@ -102,9 +102,9 @@ public class DhcpClient extends StateMachine {
|
|||||||
|
|
||||||
private static final String TAG = "DhcpClient";
|
private static final String TAG = "DhcpClient";
|
||||||
private static final boolean DBG = true;
|
private static final boolean DBG = true;
|
||||||
private static final boolean STATE_DBG = false;
|
private static final boolean STATE_DBG = Log.isLoggable(TAG, Log.DEBUG);
|
||||||
private static final boolean MSG_DBG = false;
|
private static final boolean MSG_DBG = Log.isLoggable(TAG, Log.DEBUG);
|
||||||
private static final boolean PACKET_DBG = false;
|
private static final boolean PACKET_DBG = Log.isLoggable(TAG, Log.DEBUG);
|
||||||
|
|
||||||
// Metrics events: must be kept in sync with server-side aggregation code.
|
// Metrics events: must be kept in sync with server-side aggregation code.
|
||||||
/** Represents transitions from DhcpInitState to DhcpBoundState */
|
/** Represents transitions from DhcpInitState to DhcpBoundState */
|
||||||
|
|||||||
@@ -129,8 +129,8 @@ import java.util.Map;
|
|||||||
*/
|
*/
|
||||||
public class IpReachabilityMonitor {
|
public class IpReachabilityMonitor {
|
||||||
private static final String TAG = "IpReachabilityMonitor";
|
private static final String TAG = "IpReachabilityMonitor";
|
||||||
private static final boolean DBG = false;
|
private static final boolean DBG = Log.isLoggable(TAG, Log.DEBUG);
|
||||||
private static final boolean VDBG = false;
|
private static final boolean VDBG = Log.isLoggable(TAG, Log.VERBOSE);
|
||||||
|
|
||||||
public interface Callback {
|
public interface Callback {
|
||||||
// This callback function must execute as quickly as possible as it is
|
// This callback function must execute as quickly as possible as it is
|
||||||
|
|||||||
Reference in New Issue
Block a user