Convert LOG(INFO) to VLOG(1) - chrome/browser/safe_browsing/.
This also converts SB_DLOG() to DVLOG(), since VLOG() is configurable on a per-module basis.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/4004001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63754 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/safe_browsing/safe_browsing_service.cc b/chrome/browser/safe_browsing/safe_browsing_service.cc
index 24f458c..d3dcce7 100644
--- a/chrome/browser/safe_browsing/safe_browsing_service.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_service.cc
@@ -1,7 +1,6 @@
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-//
#include "chrome/browser/safe_browsing/safe_browsing_service.h"
@@ -635,7 +634,7 @@
return URL_MALWARE;
}
- SB_DLOG(INFO) << "Unknown safe browsing list " << list_name;
+ DVLOG(1) << "Unknown safe browsing list " << list_name;
return URL_SAFE;
}
@@ -824,9 +823,9 @@
if (!enabled_)
return;
- DLOG(INFO) << "ReportSafeBrowsingHit: " << malicious_url << " " << page_url
- << " " << referrer_url << " " << is_subresource
- << " " << threat_type;
+ DVLOG(1) << "ReportSafeBrowsingHit: " << malicious_url << " " << page_url
+ << " " << referrer_url << " " << is_subresource << " "
+ << threat_type;
protocol_manager_->ReportSafeBrowsingHit(malicious_url, page_url,
referrer_url, is_subresource,
threat_type);