summaryrefslogtreecommitdiff
path: root/identity
diff options
context:
space:
mode:
authorHasini Gunasinghe <hasinitg@google.com>2021-03-15 16:10:57 +0000
committerHasini Gunasinghe <hasinitg@google.com>2021-03-15 17:34:22 +0000
commit984c630e3f6cbd62cd955ab15a43285376adba66 (patch)
tree696dd5c79a1b7b98dccbb5d0684020d2419e6120 /identity
parent053a0187f76cb8328322a6f86963169b36536ab1 (diff)
downloadsecurity-984c630e3f6cbd62cd955ab15a43285376adba66.tar.gz
Fix the text of the error message, in the case of service specific error
This is a followup CL to address the last code review comment at: aosp/1612458. Test: N/A. This is only a change in the text of the error. Change-Id: I5d5a040ee23ef20836633e296376c6e4bbfc0e47
Diffstat (limited to 'identity')
-rw-r--r--identity/Credential.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/identity/Credential.cpp b/identity/Credential.cpp
index 183ddebc..23e144f7 100644
--- a/identity/Credential.cpp
+++ b/identity/Credential.cpp
@@ -286,8 +286,8 @@ bool getTokensFromKeystore2(uint64_t challenge, uint64_t secureUserId,
LOG(ERROR) << "Error getting tokens from keystore2: " << result.getDescription();
return false;
} else {
- // Log the reason for not finding auth tokens.
- LOG(INFO) << "Auth tokens not found: " << result.getDescription();
+ // Log the reason for not receiving auth tokens from keystore2.
+ LOG(INFO) << "Auth tokens were not received due to: " << result.getDescription();
}
}
return true;