Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: chromeos/cryptohome/homedir_methods.cc

Issue 2897813003: Add name of the enum to message to help looking up. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromeos/login/auth/cryptohome_authenticator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/cryptohome/homedir_methods.cc
diff --git a/chromeos/cryptohome/homedir_methods.cc b/chromeos/cryptohome/homedir_methods.cc
index 53603a151d0b67b8733cf6a84e605247ea3687dc..e4ba875512628e8f3260563ca7efa6cfb8cb3291 100644
--- a/chromeos/cryptohome/homedir_methods.cc
+++ b/chromeos/cryptohome/homedir_methods.cc
@@ -411,7 +411,9 @@ class HomedirMethodsImpl : public HomedirMethods {
}
if (reply.has_error()) {
if (reply.error() != CRYPTOHOME_ERROR_NOT_SET) {
- LOGIN_LOG(ERROR) << "HomedirMethods MountEx error: " << reply.error();
+ LOGIN_LOG(ERROR)
+ << "HomedirMethods MountEx error (CryptohomeErrorCode): "
+ << reply.error();
callback.Run(false, MapError(reply.error()), std::string());
return;
}
« no previous file with comments | « no previous file | chromeos/login/auth/cryptohome_authenticator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698