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

Commit ba01c209 authored by Christine Hallstrom's avatar Christine Hallstrom Committed by Automerger Merge Worker
Browse files

Merge "Enable MAP logging based on logcat value for tag" into tm-qpr-dev am: db3feabe

parents ba835937 db3feabe
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -74,9 +74,9 @@ public class BluetoothMapService extends ProfileService {
     * DEBUG log: "setprop log.tag.BluetoothMapService VERBOSE"
     */

    public static final boolean DEBUG = false;
    public static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);

    public static final boolean VERBOSE = false;
    public static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);

    /**
     * The component names for the owned provider and activity
+2 −2
Original line number Diff line number Diff line
@@ -53,8 +53,8 @@ import java.util.concurrent.ConcurrentHashMap;
public class MapClientService extends ProfileService {
    private static final String TAG = "MapClientService";

    static final boolean DBG = false;
    static final boolean VDBG = false;
    static final boolean DBG = Log.isLoggable(TAG, Log.DEBUG);
    static final boolean VDBG = Log.isLoggable(TAG, Log.VERBOSE);

    static final int MAXIMUM_CONNECTED_DEVICES = 4;