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

Unified Diff: chrome/browser/chromeos/arc/arc_auth_context.cc

Issue 2742643002: arc: Change VLOG to LOG for ArcAuthContext and fetcher. (Closed)
Patch Set: Created 3 years, 9 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 | chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/arc/arc_auth_context.cc
diff --git a/chrome/browser/chromeos/arc/arc_auth_context.cc b/chrome/browser/chromeos/arc/arc_auth_context.cc
index 6278c6e90f96dac8eed12fe77d285522887be227..dc0e829e1a4b82b2e991210c4d8abf63a6292819 100644
--- a/chrome/browser/chromeos/arc/arc_auth_context.cc
+++ b/chrome/browser/chromeos/arc/arc_auth_context.cc
@@ -81,7 +81,7 @@ void ArcAuthContext::OnRefreshTokensLoaded() {
}
void ArcAuthContext::OnRefreshTokenTimeout() {
- VLOG(2) << "Failed to wait for refresh token.";
+ LOG(WARNING) << "Failed to wait for refresh token.";
token_service_->RemoveObserver(this);
base::ResetAndReturn(&callback_).Run(nullptr);
}
@@ -104,7 +104,7 @@ void ArcAuthContext::OnUbertokenSuccess(const std::string& token) {
}
void ArcAuthContext::OnUbertokenFailure(const GoogleServiceAuthError& error) {
- VLOG(2) << "Failed to get ubertoken " << error.ToString() << ".";
+ LOG(WARNING) << "Failed to get ubertoken " << error.ToString() << ".";
ResetFetchers();
base::ResetAndReturn(&callback_).Run(nullptr);
}
@@ -118,7 +118,7 @@ void ArcAuthContext::OnMergeSessionSuccess(const std::string& data) {
void ArcAuthContext::OnMergeSessionFailure(
const GoogleServiceAuthError& error) {
- VLOG(2) << "Failed to merge gaia session " << error.ToString() << ".";
+ LOG(WARNING) << "Failed to merge gaia session " << error.ToString() << ".";
ResetFetchers();
base::ResetAndReturn(&callback_).Run(nullptr);
}
« no previous file with comments | « no previous file | chrome/browser/chromeos/arc/auth/arc_background_auth_code_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698