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

Commit c5d3b469 authored by Diya Bera's avatar Diya Bera
Browse files

Cleanup unnecessary logs

Test: N/A
Flag: EXEMPT clean up
Fixes: 373598453
Change-Id: I189defe9f573e843f5947bba6ee1a35808ddaf8a
parent 3b0bf852
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -434,21 +434,12 @@ public class BiometricService extends SystemService {

        public boolean getMandatoryBiometricsEnabledAndRequirementsSatisfiedForUser(int userId) {
            if (!mMandatoryBiometricsEnabled.containsKey(userId)) {
                Slog.d(TAG, "update mb toggle for user " + userId);
                updateMandatoryBiometricsForAllProfiles(userId);
            }
            if (!mMandatoryBiometricsRequirementsSatisfied.containsKey(userId)) {
                Slog.d(TAG, "update mb reqs for user " + userId);
                updateMandatoryBiometricsRequirementsForAllProfiles(userId);
            }

            Slog.d(TAG, mMandatoryBiometricsEnabled.getOrDefault(userId,
                    DEFAULT_MANDATORY_BIOMETRICS_STATUS)
                    + " " + mMandatoryBiometricsRequirementsSatisfied.getOrDefault(userId,
                    DEFAULT_MANDATORY_BIOMETRICS_REQUIREMENTS_SATISFIED_STATUS)
                    + " " + getEnabledForApps(userId)
                    + " " + (mFingerprintEnrolledForUser.getOrDefault(userId, false /* default */)
                    || mFaceEnrolledForUser.getOrDefault(userId, false /* default */)));
            return mMandatoryBiometricsEnabled.getOrDefault(userId,
                    DEFAULT_MANDATORY_BIOMETRICS_STATUS)
                    && mMandatoryBiometricsRequirementsSatisfied.getOrDefault(userId,