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

Commit 763f0e3d authored by Sanket Agarwal's avatar Sanket Agarwal
Browse files

Set debug flags to false

- Reduces the log spam
- Eliminates any PII information in the logs

Bug: b/31811551
Change-Id: I5c421ad50706043765ef3e82cb37a44d520ecb6e
(cherry picked from commit 8964818100fb71fa1f962aeb55fc1dd54e7a9fbd)
parent 18263593
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ import com.android.bluetooth.R;

final class HeadsetClientStateMachine extends StateMachine {
    private static final String TAG = "HeadsetClientStateMachine";
    private static final boolean DBG = true;
    private static final boolean DBG = false;

    static final int NO_ACTION = 0;

+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ import java.util.UUID;

public class HfpClientConnection extends Connection {
    private static final String TAG = "HfpClientConnection";
    private static final boolean DBG = true;
    private static final boolean DBG = false;

    private final Context mContext;
    private final BluetoothDevice mDevice;
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ import java.util.UUID;

public class HfpClientConnectionService extends ConnectionService {
    private static final String TAG = "HfpClientConnService";
    private static final boolean DBG = true;
    private static final boolean DBG = false;

    public static final String HFP_SCHEME = "hfpc";