Merge "Turn off debug logging flags" into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
ed9be192b6
@@ -68,7 +68,7 @@ import com.android.internal.telephony.TelephonyIntents;
|
||||
public class IccLockSettings extends SettingsPreferenceFragment
|
||||
implements EditPinPreference.OnPinEnteredListener {
|
||||
private static final String TAG = "IccLockSettings";
|
||||
private static final boolean DBG = true;
|
||||
private static final boolean DBG = false;
|
||||
|
||||
private static final int OFF_MODE = 0;
|
||||
// State when enabling/disabling ICC lock
|
||||
|
@@ -48,7 +48,7 @@ import java.util.Map;
|
||||
public class AppStateNotificationBridge extends AppStateBaseBridge {
|
||||
|
||||
private final String TAG = "AppStateNotificationBridge";
|
||||
private final boolean DEBUG = true;
|
||||
private final boolean DEBUG = false;
|
||||
private final Context mContext;
|
||||
private IUsageStatsManager mUsageStatsManager;
|
||||
protected List<Integer> mUserIds;
|
||||
|
@@ -41,7 +41,7 @@ import java.util.ArrayList;
|
||||
public class FaceEnrollEnrolling extends BiometricsEnrollEnrolling {
|
||||
|
||||
private static final String TAG = "FaceEnrollEnrolling";
|
||||
private static final boolean DEBUG = true;
|
||||
private static final boolean DEBUG = false;
|
||||
private static final String TAG_FACE_PREVIEW = "tag_preview";
|
||||
|
||||
private TextView mErrorText;
|
||||
|
@@ -124,7 +124,7 @@ public class FingerprintSettings extends SubSettings {
|
||||
|
||||
private static final int ADD_FINGERPRINT_REQUEST = 10;
|
||||
|
||||
protected static final boolean DEBUG = true;
|
||||
protected static final boolean DEBUG = false;
|
||||
|
||||
private FingerprintManager mFingerprintManager;
|
||||
private boolean mInFingerprintLockout;
|
||||
|
@@ -33,7 +33,7 @@ public class AvailableMediaBluetoothDeviceUpdater extends BluetoothDeviceUpdater
|
||||
implements Preference.OnPreferenceClickListener {
|
||||
|
||||
private static final String TAG = "AvailableMediaBluetoothDeviceUpdater";
|
||||
private static final boolean DBG = true;
|
||||
private static final boolean DBG = false;
|
||||
|
||||
private final AudioManager mAudioManager;
|
||||
|
||||
|
@@ -50,7 +50,7 @@ import java.util.Map;
|
||||
public abstract class BluetoothDeviceUpdater implements BluetoothCallback,
|
||||
LocalBluetoothProfileManager.ServiceListener {
|
||||
private static final String TAG = "BluetoothDeviceUpdater";
|
||||
private static final boolean DBG = true;
|
||||
private static final boolean DBG = false;
|
||||
|
||||
protected final DevicePreferenceCallback mDevicePreferenceCallback;
|
||||
protected final Map<BluetoothDevice, Preference> mPreferenceMap;
|
||||
|
@@ -33,7 +33,7 @@ import com.android.settingslib.bluetooth.CachedBluetoothDevice;
|
||||
public class ConnectedBluetoothDeviceUpdater extends BluetoothDeviceUpdater {
|
||||
|
||||
private static final String TAG = "ConnBluetoothDeviceUpdater";
|
||||
private static final boolean DBG = true;
|
||||
private static final boolean DBG = false;
|
||||
|
||||
private final AudioManager mAudioManager;
|
||||
|
||||
|
@@ -31,7 +31,7 @@ import com.android.settingslib.bluetooth.CachedBluetoothDevice;
|
||||
public class SavedBluetoothDeviceUpdater extends BluetoothDeviceUpdater
|
||||
implements Preference.OnPreferenceClickListener {
|
||||
private static final String TAG = "SavedBluetoothDeviceUpdater";
|
||||
private static final boolean DBG = true;
|
||||
private static final boolean DBG = false;
|
||||
|
||||
public SavedBluetoothDeviceUpdater(Context context, DashboardFragment fragment,
|
||||
DevicePreferenceCallback devicePreferenceCallback) {
|
||||
|
@@ -45,7 +45,7 @@ import java.util.stream.Collectors;
|
||||
*/
|
||||
public class NetworkScanHelper {
|
||||
public static final String TAG = "NetworkScanHelper";
|
||||
private static final boolean DBG = true;
|
||||
private static final boolean DBG = false;
|
||||
|
||||
/**
|
||||
* Callbacks interface to inform the network scan results.
|
||||
|
@@ -69,7 +69,7 @@ import java.util.List;
|
||||
public class NotificationStation extends SettingsPreferenceFragment {
|
||||
private static final String TAG = NotificationStation.class.getSimpleName();
|
||||
|
||||
private static final boolean DEBUG = true;
|
||||
private static final boolean DEBUG = false;
|
||||
private static final boolean DUMP_EXTRAS = true;
|
||||
private static final boolean DUMP_PARCEL = true;
|
||||
private Handler mHandler;
|
||||
|
Reference in New Issue
Block a user