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

Unified Diff: chromeos/login/auth/cryptohome_authenticator.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 | « chromeos/cryptohome/homedir_methods.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/login/auth/cryptohome_authenticator.cc
diff --git a/chromeos/login/auth/cryptohome_authenticator.cc b/chromeos/login/auth/cryptohome_authenticator.cc
index 52146282c48460a6c0307f7659e972f92325344e..f43aafc9521f933202b3be6cdb2672b71849f65e 100644
--- a/chromeos/login/auth/cryptohome_authenticator.cc
+++ b/chromeos/login/auth/cryptohome_authenticator.cc
@@ -907,8 +907,9 @@ CryptohomeAuthenticator::AuthState CryptohomeAuthenticator::ResolveState() {
} else {
state = ResolveCryptohomeFailureState();
LOGIN_LOG(ERROR) << "Cryptohome failure: "
- << "state=" << state
- << ", code=" << current_state_->cryptohome_code();
+ << "state(AuthState)=" << state
+ << ", code(cryptohome::MountError)="
+ << current_state_->cryptohome_code();
}
DCHECK(current_state_->cryptohome_complete()); // Ensure invariant holds.
« no previous file with comments | « chromeos/cryptohome/homedir_methods.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698