Add a log msg when adding CAs.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Tue, 27 Apr 2004 03:21:49 +0000 (03:21 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Tue, 27 Apr 2004 03:21:49 +0000 (03:21 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@1060 cb58f699-b61c-0410-a6fe-9272a202ed29

xmlproviders/XMLTrust.cpp

index efa80ae..d21ae75 100644 (file)
@@ -183,6 +183,9 @@ X509_STORE* XMLTrustImpl::KeyAuthority::getX509Store()
             log.warn("failed to add cert: %s", (*j)->name);
             continue;
         }
+        else {
+            log.debug("added cert: %s", (*j)->name);
+        }
     }
 
     return store;