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

Commit c85cbfbf authored by Kevin Chyn's avatar Kevin Chyn Committed by Android (Google) Code Review
Browse files

Merge "Log authentication rejection" into qt-dev

parents 343b9678 d4ee8af9
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -129,13 +129,16 @@ public abstract class AuthenticationClient extends ClientMonitor {
        boolean result = false;

        try {
            if (authenticated) {
                mAlreadyDone = true;
                if (DEBUG) Slog.v(getLogTag(), "onAuthenticated(" + getOwnerString()
            if (DEBUG) Slog.v(getLogTag(), "onAuthenticated(" + authenticated + ")"
                    + ", ID:" + identifier.getBiometricId()
                    + ", Owner: " + getOwnerString()
                    + ", isBP: " + isBiometricPrompt()
                    + ", listener: " + listener
                    + ", requireConfirmation: " + mRequireConfirmation);

            if (authenticated) {
                mAlreadyDone = true;

                if (listener != null) {
                    vibrateSuccess();
                }