Commit 032e8dc9 authored by sail@chromium.org's avatar sail@chromium.org

Lower log level for profile errors

The GAIA profile downloader code was causing log spew for tests.

I tried to disable the logging for test code but I couldn't figure out how to do it so I'm just lowering the log level instead.

BUG=106783
TEST=


Review URL: http://codereview.chromium.org/8873028

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113876 0039d316-1c4b-4281-b951-d872f2087c98
parent 763839eb
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment