#635 - Correct a misleading log tag

This commit is contained in:
Joshua Soberg 2021-01-29 18:32:46 -05:00
parent be432e7b4f
commit 1ab6b21476

View file

@ -80,7 +80,7 @@ public class AuthenticationTask extends AsyncTask<Void, Void, Result> {
}
return Result.failure();
} catch (NoSuchAlgorithmException | InvalidKeySpecException | IllegalArgumentException e) {
Log.e("DecodePasswordTask", "Problem decoding password", e);
Log.e("AuthenticationTask", "Problem decoding password", e);
return Result.failure();
}
}