Turn off debug logging flags

Fixes: 130558346
Test: visual
Change-Id: Ie82bfe503f789435a3474697391fdfdeb94864ee
This commit is contained in:
Yanting Yang
2019-04-17 17:34:34 +08:00
parent cf9b3d2e87
commit 118e7aee28
10 changed files with 10 additions and 10 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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) {

View File

@@ -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.

View File

@@ -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;