Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b6214f3 authored by Matthew Xie's avatar Matthew Xie
Browse files

Turn off verbose debug message in BluetoothAdapter

Change-Id: I30245ab911b5428f7af38f195b941db02d36b18f
parent 40edfc97
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -75,6 +75,7 @@ import java.util.UUID;
public final class BluetoothAdapter {
public final class BluetoothAdapter {
    private static final String TAG = "BluetoothAdapter";
    private static final String TAG = "BluetoothAdapter";
    private static final boolean DBG = true;
    private static final boolean DBG = true;
    private static final boolean VDBG = false;


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