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

Commit e07ee532 authored by Kim Schulz's avatar Kim Schulz Committed by Pavlin Radoslavov
Browse files

SAP: turn debugging and test flags off

Currently DEBUG, VERBOSE and PTS_TEST_MODE is on as a default.
There is no reason for that in production code (except for during test
where the code needs to go through PTS test)

Bug: 21692162
Change-Id: Id092a79959fa38608d06755cc43148eee9ec3e00
parent 98ab4619
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -45,9 +45,9 @@ public class SapService extends ProfileService {
    private static final String SDP_SAP_SERVICE_NAME = "SIM Access";
    private static final int SDP_SAP_VERSION = 0x0102;
    private static final String TAG = "SapService";
    public static final boolean DEBUG = true;
    public static final boolean VERBOSE = true;
    public static final boolean PTS_TEST = true;
    public static final boolean DEBUG = false;
    public static final boolean VERBOSE = false;
    public static final boolean PTS_TEST = false;

    /* Message ID's */
    private static final int START_LISTENER = 1;