diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 19:30:52 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 19:30:52 +0000 |
commit | b46d699461817984366d8a230a51ffb4d0afe8f1 (patch) | |
tree | ad3a744785ed879bee20d5fcd0d866859af1c1d6 /net/cert | |
parent | 87ecde9bc0017384d98b195dfd7e76dae63ac504 (diff) | |
download | chromium_src-b46d699461817984366d8a230a51ffb4d0afe8f1.zip chromium_src-b46d699461817984366d8a230a51ffb4d0afe8f1.tar.gz chromium_src-b46d699461817984366d8a230a51ffb4d0afe8f1.tar.bz2 |
Revert 237095 "LOG(INFO) tidying in net/"
VLOG(0) isn't any better than LOG(INFO), other than sneaking past PRESUBMIT.
> LOG(INFO) tidying in net/
>
> Some deletions, some to VLOG.
>
> R=rsleevi@chromium.org
> BUG=322805
>
> Review URL: https://codereview.chromium.org/82913011
TBR=scottmg@chromium.org
Review URL: https://codereview.chromium.org/86203003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237122 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/cert')
-rw-r--r-- | net/cert/x509_util_ios.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/cert/x509_util_ios.cc b/net/cert/x509_util_ios.cc index 25d3aac..736c26e 100644 --- a/net/cert/x509_util_ios.cc +++ b/net/cert/x509_util_ios.cc @@ -100,6 +100,8 @@ SHA1HashValue CalculateFingerprintNSS(CERTCertificate* cert) { NSSCertificate::NSSCertificate(SecCertificateRef cert_handle) { nss_cert_handle_ = CreateNSSCertHandleFromOSHandle(cert_handle); + DLOG_IF(INFO, cert_handle && !nss_cert_handle_) + << "Could not convert SecCertificateRef to CERTCertificate*"; } NSSCertificate::~NSSCertificate() { |