#635 - Correct a misleading log tag
This commit is contained in:
parent
be432e7b4f
commit
1ab6b21476
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ public class AuthenticationTask extends AsyncTask<Void, Void, Result> {
|
||||||
}
|
}
|
||||||
return Result.failure();
|
return Result.failure();
|
||||||
} catch (NoSuchAlgorithmException | InvalidKeySpecException | IllegalArgumentException e) {
|
} catch (NoSuchAlgorithmException | InvalidKeySpecException | IllegalArgumentException e) {
|
||||||
Log.e("DecodePasswordTask", "Problem decoding password", e);
|
Log.e("AuthenticationTask", "Problem decoding password", e);
|
||||||
return Result.failure();
|
return Result.failure();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue