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

Unified Diff: chrome/browser/chromeos/login/cookie_fetcher.cc

Issue 4011001: Convert LOG(INFO) to VLOG(1) - chrome/browser/chromeos/login/.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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
Index: chrome/browser/chromeos/login/cookie_fetcher.cc
===================================================================
--- chrome/browser/chromeos/login/cookie_fetcher.cc (revision 63306)
+++ chrome/browser/chromeos/login/cookie_fetcher.cc (working copy)
@@ -29,7 +29,7 @@
}
void CookieFetcher::AttemptFetch(const std::string& credentials) {
- LOG(INFO) << "getting auth token...";
+ VLOG(1) << "Getting auth token...";
fetcher_.reset(client_login_handler_->Handle(credentials, this));
}
@@ -41,12 +41,12 @@
const std::string& data) {
if (status.is_success() && response_code == kHttpSuccess) {
if (issue_handler_->CanHandle(url)) {
- LOG(INFO) << "Handling auth token";
+ VLOG(1) << "Handling auth token";
fetcher_.reset(issue_handler_->Handle(data, this));
return;
}
}
- LOG(INFO) << "Calling DoLaunch";
+ VLOG(1) << "Calling DoLaunch";
launcher_->DoLaunch(profile_);
delete this;
}
« no previous file with comments | « chrome/browser/chromeos/login/client_login_response_handler.cc ('k') | chrome/browser/chromeos/login/eula_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698