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

Commit d5f82621 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Increase logging level in GnssSatelliteBlacklistHelper"

parents e9276e16 a85504af
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ import java.util.List;
class GnssSatelliteBlacklistHelper {

    private static final String TAG = "GnssBlacklistHelper";
    private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
    private static final String BLACKLIST_DELIMITER = ",";

    private final Context mContext;
@@ -55,9 +54,7 @@ class GnssSatelliteBlacklistHelper {
        if (blacklist == null) {
            blacklist = "";
        }
        if (DEBUG) {
            Log.d(TAG, String.format("Update GNSS satellite blacklist: %s", blacklist));
        }
        Log.i(TAG, String.format("Update GNSS satellite blacklist: %s", blacklist));

        List<Integer> blacklistValues;
        try {