| Index: chrome_frame/metrics_service.cc
|
| ===================================================================
|
| --- chrome_frame/metrics_service.cc (revision 62784)
|
| +++ chrome_frame/metrics_service.cc (working copy)
|
| @@ -137,7 +137,7 @@
|
| }
|
|
|
| ~ChromeFrameUploadRequestContext() {
|
| - DLOG(INFO) << __FUNCTION__;
|
| + DVLOG(1) << __FUNCTION__;
|
| delete http_transaction_factory_;
|
| delete http_auth_handler_factory_;
|
| }
|
| @@ -218,7 +218,7 @@
|
|
|
| private:
|
| ~ChromeFrameUploadRequestContextGetter() {
|
| - DLOG(INFO) << __FUNCTION__;
|
| + DVLOG(1) << __FUNCTION__;
|
| }
|
|
|
| scoped_refptr<URLRequestContext> context_;
|
| @@ -243,12 +243,12 @@
|
|
|
| ChromeFrameMetricsDataUploader()
|
| : fetcher_(NULL) {
|
| - DLOG(INFO) << __FUNCTION__;
|
| + DVLOG(1) << __FUNCTION__;
|
| creator_thread_id_ = PlatformThread::CurrentId();
|
| }
|
|
|
| ~ChromeFrameMetricsDataUploader() {
|
| - DLOG(INFO) << __FUNCTION__;
|
| + DVLOG(1) << __FUNCTION__;
|
| DCHECK(creator_thread_id_ == PlatformThread::CurrentId());
|
| }
|
|
|
| @@ -330,11 +330,9 @@
|
| int response_code,
|
| const ResponseCookies& cookies,
|
| const std::string& data) {
|
| - DLOG(INFO) << __FUNCTION__
|
| - << base::StringPrintf(
|
| - ": url : %hs, status:%d, response code: %d\n",
|
| - url.spec().c_str(), status.status(),
|
| - response_code);
|
| + DVLOG(1) << __FUNCTION__ << base::StringPrintf(
|
| + ": url : %hs, status:%d, response code: %d\n", url.spec().c_str(),
|
| + status.status(), response_code);
|
| delete fetcher_;
|
| fetcher_ = NULL;
|
|
|
| @@ -449,7 +447,7 @@
|
| unsigned int message,
|
| unsigned int event_id,
|
| unsigned int time) {
|
| - DLOG(INFO) << "Transmission timer notified";
|
| + DVLOG(1) << "Transmission timer notified";
|
| DCHECK(GetInstance() != NULL);
|
| GetInstance()->UploadData();
|
| if (GetInstance()->initial_uma_upload_) {
|
| @@ -563,7 +561,7 @@
|
|
|
| static long currently_uploading = 0;
|
| if (InterlockedCompareExchange(¤tly_uploading, 1, 0)) {
|
| - DLOG(INFO) << "Contention for uploading metrics data. Backing off";
|
| + DVLOG(1) << "Contention for uploading metrics data. Backing off";
|
| return false;
|
| }
|
|
|
| @@ -571,7 +569,7 @@
|
| DCHECK(!pending_log_text.empty());
|
|
|
| // Allow security conscious users to see all metrics logs that we send.
|
| - LOG(INFO) << "METRICS LOG: " << pending_log_text;
|
| + VLOG(1) << "METRICS LOG: " << pending_log_text;
|
|
|
| bool ret = true;
|
|
|
|
|