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

Unified Diff: chrome_frame/metrics_service.cc

Issue 3850002: Convert LOG(INFO) to VLOG(1) - chrome_frame/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 months 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 | « chrome_frame/http_negotiate.cc ('k') | chrome_frame/np_event_listener.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(&currently_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;
« no previous file with comments | « chrome_frame/http_negotiate.cc ('k') | chrome_frame/np_event_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698