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

Commit d6267500 authored by William Escande's avatar William Escande Committed by Gerrit Code Review
Browse files

Merge "Enable MAP logging based on logcat value for tag"

parents edbc8dd7 7dc86fc3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -75,9 +75,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;