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

Unified Diff: net/cert/x509_util_ios.cc

Issue 82913011: LOG(INFO) tidying in net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: net/cert/x509_util_ios.cc
diff --git a/net/cert/x509_util_ios.cc b/net/cert/x509_util_ios.cc
index 736c26e0438f160e6d9409e909badabf81370b43..16f28f1e3ad2fb68624fd322fb0202e96f855885 100644
--- a/net/cert/x509_util_ios.cc
+++ b/net/cert/x509_util_ios.cc
@@ -100,7 +100,7 @@ SHA1HashValue CalculateFingerprintNSS(CERTCertificate* cert) {
NSSCertificate::NSSCertificate(SecCertificateRef cert_handle) {
nss_cert_handle_ = CreateNSSCertHandleFromOSHandle(cert_handle);
- DLOG_IF(INFO, cert_handle && !nss_cert_handle_)
+ DVLOG_IF(0, cert_handle && !nss_cert_handle_)
<< "Could not convert SecCertificateRef to CERTCertificate*";
Ryan Sleevi 2013/11/25 01:08:32 Let's delete this. It should only come up in weir
scottmg 2013/11/25 17:12:38 Done.
}

Powered by Google App Engine
This is Rietveld 408576698