Loading android/app/src/com/android/bluetooth/map/BluetoothMapService.java +2 −2 Original line number Diff line number Diff line Loading @@ -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 Loading android/app/src/com/android/bluetooth/mapclient/MapClientService.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; Loading Loading
android/app/src/com/android/bluetooth/map/BluetoothMapService.java +2 −2 Original line number Diff line number Diff line Loading @@ -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 Loading
android/app/src/com/android/bluetooth/mapclient/MapClientService.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; Loading