Skip to content

Commit 9e3045c

Browse files
Matthew XieAndroid (Google) Code Review
authored andcommitted
Merge "Turn off verbose debug message in BluetoothAdapter Change-Id: I30245ab911b5428f7af38f195b941db02d36b18f" into jb-mr1-dev
2 parents a28c18f + 3b6214f commit 9e3045c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/java/android/bluetooth/BluetoothAdapter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
public final class BluetoothAdapter {
7676
private static final String TAG = "BluetoothAdapter";
7777
private static final boolean DBG = true;
78+
private static final boolean VDBG = false;
7879

7980
/**
8081
* Sentinel error value for this class. Guaranteed to not equal any other
@@ -465,7 +466,7 @@ public int getState() {
465466
if (mService != null)
466467
{
467468
int state= mService.getState();
468-
if (DBG) Log.d(TAG, "" + hashCode() + ": getState(). Returning " + state);
469+
if (VDBG) Log.d(TAG, "" + hashCode() + ": getState(). Returning " + state);
469470
return state;
470471
}
471472
// TODO(BT) there might be a small gap during STATE_TURNING_ON that

0 commit comments

Comments
 (0)