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

Unified Diff: chrome/browser/safe_browsing/browser_feature_extractor.cc

Issue 688993004: [chrome/browser/s*] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing the patch and removing supervised_users related change Created 6 years, 1 month 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
Index: chrome/browser/safe_browsing/browser_feature_extractor.cc
diff --git a/chrome/browser/safe_browsing/browser_feature_extractor.cc b/chrome/browser/safe_browsing/browser_feature_extractor.cc
index ca108dac626527620ee11554a1589e241bece691..02458dad88a7fccd510d5b5a61b0ffb39dbc7786 100644
--- a/chrome/browser/safe_browsing/browser_feature_extractor.cc
+++ b/chrome/browser/safe_browsing/browser_feature_extractor.cc
@@ -80,7 +80,7 @@ static void AddFeature(const std::string& feature_name,
request->add_non_model_feature_map();
feature->set_name(feature_name);
feature->set_value(feature_value);
- VLOG(2) << "Browser feature: " << feature->name() << " " << feature->value();
+ DVLOG(2) << "Browser feature: " << feature->name() << " " << feature->value();
}
static void AddMalwareIpUrlInfo(const std::string& ip,
@@ -464,7 +464,7 @@ bool BrowserFeatureExtractor::GetHistoryService(HistoryService** history) {
return true;
}
}
- VLOG(2) << "Unable to query history. No history service available.";
+ DVLOG(2) << "Unable to query history. No history service available.";
return false;
}

Powered by Google App Engine
This is Rietveld 408576698