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

Unified Diff: chrome/browser/chromeos/login/client_login_response_handler.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
« no previous file with comments | « chrome/browser/chromeos/login/authenticator.cc ('k') | chrome/browser/chromeos/login/cookie_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/client_login_response_handler.cc
===================================================================
--- chrome/browser/chromeos/login/client_login_response_handler.cc (revision 63306)
+++ chrome/browser/chromeos/login/client_login_response_handler.cc (working copy)
@@ -27,7 +27,7 @@
URLFetcher* ClientLoginResponseHandler::Handle(
const std::string& to_process,
URLFetcher::Delegate* catcher) {
- LOG(INFO) << "Handling ClientLogin response!";
+ VLOG(1) << "Handling ClientLogin response!";
payload_.assign(to_process);
std::replace(payload_.begin(), payload_.end(), '\n', '&');
payload_.append(kService);
@@ -39,7 +39,7 @@
fetcher->set_load_flags(net::LOAD_DO_NOT_SEND_COOKIES);
fetcher->set_upload_data("application/x-www-form-urlencoded", payload_);
if (getter_) {
- LOG(INFO) << "Fetching " << AuthResponseHandler::kIssueAuthTokenUrl;
+ VLOG(1) << "Fetching " << AuthResponseHandler::kIssueAuthTokenUrl;
fetcher->set_request_context(getter_);
fetcher->Start();
}
« no previous file with comments | « chrome/browser/chromeos/login/authenticator.cc ('k') | chrome/browser/chromeos/login/cookie_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698