Index: content/browser/download/download_resource_handler.cc |
diff --git a/content/browser/download/download_resource_handler.cc b/content/browser/download/download_resource_handler.cc |
index f2fb2a5b267f68158625704cbb4a9f09ee9952d4..d6789a7ffda6a583cfb2f5ac52f4f9abb607fd3b 100644 |
--- a/content/browser/download/download_resource_handler.cc |
+++ b/content/browser/download/download_resource_handler.cc |
@@ -156,7 +156,7 @@ bool DownloadResourceHandler::OnResponseStarted( |
DCHECK(!on_response_started_called_); |
on_response_started_called_ = true; |
- VLOG(20) << __FUNCTION__ << "()" << DebugString(); |
+ DVLOG(20) << __FUNCTION__ << "()" << DebugString(); |
download_start_time_ = base::TimeTicks::Now(); |
// If it's a download, we don't want to poison the cache with it. |
@@ -343,10 +343,10 @@ void DownloadResourceHandler::OnResponseCompleted( |
bool* defer) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
int response_code = status.is_success() ? request()->GetResponseCode() : 0; |
- VLOG(20) << __FUNCTION__ << "()" << DebugString() |
- << " status.status() = " << status.status() |
- << " status.error() = " << status.error() |
- << " response_code = " << response_code; |
+ DVLOG(20) << __FUNCTION__ << "()" << DebugString() |
+ << " status.status() = " << status.status() |
+ << " status.error() = " << status.error() |
+ << " response_code = " << response_code; |
net::Error error_code = net::OK; |
if (status.status() == net::URLRequestStatus::FAILED || |