diff options
| author | Matthew Xie <mattx@google.com> | 2012-08-29 16:30:14 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-08-29 16:30:14 -0700 |
| commit | 9e3045c75c80d859dd16087e69f5bfbe15ca8bf4 (patch) | |
| tree | 5f40b7f7b2b8a97277072b421a76dd662597cd59 /core/java/android | |
| parent | a28c18fc618e4bf58da6417166b1ee249dc16ea9 (diff) | |
| parent | 3b6214f373b693323a474325662242415090f7f7 (diff) | |
Merge "Turn off verbose debug message in BluetoothAdapter Change-Id: I30245ab911b5428f7af38f195b941db02d36b18f" into jb-mr1-dev
Diffstat (limited to 'core/java/android')
| -rwxr-xr-x | core/java/android/bluetooth/BluetoothAdapter.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/bluetooth/BluetoothAdapter.java b/core/java/android/bluetooth/BluetoothAdapter.java index 17d404d2d7a0..f817fb48d2c7 100755 --- a/core/java/android/bluetooth/BluetoothAdapter.java +++ b/core/java/android/bluetooth/BluetoothAdapter.java @@ -75,6 +75,7 @@ import java.util.UUID; public final class BluetoothAdapter { private static final String TAG = "BluetoothAdapter"; private static final boolean DBG = true; + private static final boolean VDBG = false; /** * Sentinel error value for this class. Guaranteed to not equal any other @@ -465,7 +466,7 @@ public final class BluetoothAdapter { if (mService != null) { int state= mService.getState(); - if (DBG) Log.d(TAG, "" + hashCode() + ": getState(). Returning " + state); + if (VDBG) Log.d(TAG, "" + hashCode() + ": getState(). Returning " + state); return state; } // TODO(BT) there might be a small gap during STATE_TURNING_ON that |
