From a4038cc0d3522d1e3a0c81fbf3e25097d8b90566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20=C4=8Eurech?= Date: Tue, 29 Oct 2019 15:43:10 +0100 Subject: [PATCH] Android: #253: Better error message in log --- .../security/powerauth/biometry/BiometricAuthentication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proj-android/PowerAuthLibrary/src/main/java/io/getlime/security/powerauth/biometry/BiometricAuthentication.java b/proj-android/PowerAuthLibrary/src/main/java/io/getlime/security/powerauth/biometry/BiometricAuthentication.java index 1d4188bf..732c8fee 100644 --- a/proj-android/PowerAuthLibrary/src/main/java/io/getlime/security/powerauth/biometry/BiometricAuthentication.java +++ b/proj-android/PowerAuthLibrary/src/main/java/io/getlime/security/powerauth/biometry/BiometricAuthentication.java @@ -256,7 +256,7 @@ public void onCancel() { * @return Dummy {@link ICancelable} object that does nothing. */ private static ICancelable reportSimultaneousRequest(@NonNull final IBiometricAuthenticationCallback callback) { - PA2Log.e("Cannot execute multiple biometric authentication requests. This request is going to be canceled."); + PA2Log.e("Cannot execute more than one biometric authentication request at the same time. This request is going to be canceled."); // Report cancel to the main thread. new DefaultCallbackDispatcher().dispatchCallback(new Runnable() { @Override