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

Commit 552d779a 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 ff622c8624815bc5cd1be4ae974877b2679f36e7)
parent ed048ac5
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";