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

Commit 3dfbebd5 authored by Abhishek Nigam's avatar Abhishek Nigam Committed by Android (Google) Code Review
Browse files

Merge "Log requesting package and result for requestLSKF" into main

parents 7f240701 9a5e90ba
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1418,8 +1418,11 @@ public class RecoverySystem {
     * @throws IOException if the recovery system service could not be contacted
     */
    private boolean requestLskf(String packageName, IntentSender sender) throws IOException {
        Log.i(TAG, String.format("<%s> is requesting LSFK", packageName));
        try {
            return mService.requestLskf(packageName, sender);
            boolean validRequest = mService.requestLskf(packageName, sender);
            Log.i(TAG, String.format("LSKF Request isValid = %b", validRequest));
            return validRequest;
        } catch (RemoteException | SecurityException e) {
            throw new IOException("could not request LSKF capture", e);
        }