We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a28c18f + 3b6214f commit 9e3045cCopy full SHA for 9e3045c
core/java/android/bluetooth/BluetoothAdapter.java
@@ -75,6 +75,7 @@
75
public final class BluetoothAdapter {
76
private static final String TAG = "BluetoothAdapter";
77
private static final boolean DBG = true;
78
+ private static final boolean VDBG = false;
79
80
/**
81
* Sentinel error value for this class. Guaranteed to not equal any other
@@ -465,7 +466,7 @@ public int getState() {
465
466
if (mService != null)
467
{
468
int state= mService.getState();
- if (DBG) Log.d(TAG, "" + hashCode() + ": getState(). Returning " + state);
469
+ if (VDBG) Log.d(TAG, "" + hashCode() + ": getState(). Returning " + state);
470
return state;
471
}
472
// TODO(BT) there might be a small gap during STATE_TURNING_ON that
0 commit comments