| 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;
|
| }
|
|
|