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

Unified Diff: chrome/browser/profiles/profile_downloader.cc

Issue 8873028: Lower log level for profile errors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use dvlog Created 9 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_downloader.cc
diff --git a/chrome/browser/profiles/profile_downloader.cc b/chrome/browser/profiles/profile_downloader.cc
index 8e0522b6d034c9641dcd13f99837bc46055a5a70..57ff7f982218982b00985a9a359aabf27b552eac 100644
--- a/chrome/browser/profiles/profile_downloader.cc
+++ b/chrome/browser/profiles/profile_downloader.cc
@@ -273,9 +273,9 @@ void ProfileDownloader::OnURLFetchComplete(const content::URLFetcher* source) {
std::string data;
source->GetResponseAsString(&data);
if (source->GetResponseCode() != 200) {
- LOG(ERROR) << "Response code is " << source->GetResponseCode();
- LOG(ERROR) << "Url is " << source->GetURL().spec();
- LOG(ERROR) << "Data is " << data;
+ DVLOG(1) << "Response code is " << source->GetResponseCode();
+ DVLOG(1) << "Url is " << source->GetURL().spec();
+ DVLOG(1) << "Data is " << data;
delegate_->OnDownloadComplete(this, false);
return;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698