Skip to content

Commit

Permalink
Disable More Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Cl3Kener authored and rc420head committed Mar 10, 2016
1 parent eaa1173 commit 57ee2c9
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class NetInitiatedActivity extends AlertActivity implements DialogInterfa

private static final String TAG = "NetInitiatedActivity";

private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private static final boolean VERBOSE = false;

private static final int POSITIVE_BUTTON = AlertDialog.BUTTON_POSITIVE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Test for AsyncChannel.
*/
public class AsyncChannelTest extends TestCase {
private static final boolean DBG = true;
private static final boolean DBG = false;
private static final boolean WAIT_FOR_DEBUGGER = false;
private static final String TAG = "AsyncChannelTest";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class StateMachineTest extends TestCase {
private static final int TEST_CMD_5 = 5;
private static final int TEST_CMD_6 = 6;

private static final boolean DBG = true;
private static final boolean DBG = false;
private static final boolean WAIT_FOR_DEBUGGER = false;
private static final String TAG = "StateMachineTest";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class GpsNetInitiatedHandler {

private static final String TAG = "GpsNetInitiatedHandler";

private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private static final boolean VERBOSE = false;

// NI verify activity for bringing up UI (not used yet)
Expand Down
2 changes: 1 addition & 1 deletion media/java/android/media/Ringtone.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/
public class Ringtone {
private static final String TAG = "Ringtone";
private static final boolean LOGD = true;
private static final boolean LOGD = false;

private static final String[] MEDIA_COLUMNS = new String[] {
MediaStore.Audio.Media._ID,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*/
public class BackupRestoreConfirmation extends Activity {
static final String TAG = "BackupRestoreConfirmation";
static final boolean DEBUG = true;
static final boolean DEBUG = false;

static final String DID_ACKNOWLEDGE = "did_acknowledge";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public final class MutexFileProvider {
private static final String LOG_TAG = "MutexFileProvider";

private static final boolean DEBUG = true;
private static final boolean DEBUG = false;

private final Object mLock = new Object();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*/
public class ObbBackupService extends Service {
static final String TAG = "ObbBackupService";
static final boolean DEBUG = true;
static final boolean DEBUG = false;

/**
* IObbBackupService interface implementation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

public class SharedStorageAgent extends FullBackupAgent {
static final String TAG = "SharedStorageAgent";
static final boolean DEBUG = true;
static final boolean DEBUG = false;

StorageVolume[] mVolumes;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

public class FullBackupJob extends JobService {
private static final String TAG = "FullBackupJob";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;

private static ComponentName sIdleService =
new ComponentName("android", FullBackupJob.class.getName());
Expand Down
2 changes: 1 addition & 1 deletion services/core/java/com/android/server/NsdService.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class NsdService extends INsdManager.Stub {
private static final String TAG = "NsdService";
private static final String MDNS_TAG = "mDnsConnector";

private static final boolean DBG = true;
private static final boolean DBG = false;

private Context mContext;
private ContentResolver mContentResolver;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
*/
public class PermissionMonitor {
private static final String TAG = "PermissionMonitor";
private static final boolean DBG = true;
private static final boolean DBG = false;
private static final boolean SYSTEM = true;
private static final boolean NETWORK = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
*/
public class FingerprintService extends SystemService implements IBinder.DeathRecipient {
private static final String TAG = "FingerprintService";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private static final String FP_DATA_DIR = "fpdata";
private static final String FINGERPRINTD = "android.hardware.fingerprint.IFingerprintDaemon";
private static final int MSG_USER_SWITCHING = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class LocalRenderer extends Renderer implements OnPreparedListener,
OnBufferingUpdateListener, OnCompletionListener, OnErrorListener,
OnAudioFocusChangeListener {
private static final String TAG = "MediaPlayerManager";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private static long sDebugInstanceId = 0;

private static final String[] SUPPORTED_FEATURES = {
Expand Down
2 changes: 1 addition & 1 deletion wifi/java/android/net/wifi/RttManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@SystemApi
public class RttManager {

private static final boolean DBG = true;
private static final boolean DBG = false;
private static final String TAG = "RttManager";

/** @deprecated It is Not supported anymore. */
Expand Down

0 comments on commit 57ee2c9

Please sign in to comment.