[cpp-xmltooling] branch master updated: CPPOST-104 - Rationalize logging names for Metadata Providers

Scott Cantor cantor.2 at osu.edu
Wed Mar 21 15:40:51 EDT 2018


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository cpp-xmltooling.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-xmltooling.git;a=commit;h=bfc87a42354ea188283b7a97f5ae0cf92cfd18b0

The following commit(s) were added to refs/heads/master by this push:
       new  bfc87a4   CPPOST-104 - Rationalize logging names for Metadata Providers
bfc87a4 is described below

commit bfc87a42354ea188283b7a97f5ae0cf92cfd18b0
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 21 15:39:33 2018 -0400

    CPPOST-104 - Rationalize logging names for Metadata Providers
    
    https://issues.shibboleth.net/jira/browse/CPPOST-104
---
 xmltooling/XMLObjectBuilder.cpp                   | 2 +-
 xmltooling/signature/impl/XMLSecSignatureImpl.cpp | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/xmltooling/XMLObjectBuilder.cpp b/xmltooling/XMLObjectBuilder.cpp
index 6b33a6d..2433f59 100644
--- a/xmltooling/XMLObjectBuilder.cpp
+++ b/xmltooling/XMLObjectBuilder.cpp
@@ -85,7 +85,7 @@ const XMLObjectBuilder* XMLObjectBuilder::getBuilder(const DOMElement* domElemen
 #ifdef _DEBUG
     xmltooling::NDC ndc("getBuilder");
 #endif
-    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".XMLObject.Builder");
+    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".XMLObjectBuilder");
  
     auto_ptr<QName> schemaType(XMLHelper::getXSIType(domElement));
     const XMLObjectBuilder* xmlObjectBuilder = schemaType.get() ? getBuilder(*(schemaType.get())) : nullptr;
diff --git a/xmltooling/signature/impl/XMLSecSignatureImpl.cpp b/xmltooling/signature/impl/XMLSecSignatureImpl.cpp
index 43faa90..ab2ba53 100644
--- a/xmltooling/signature/impl/XMLSecSignatureImpl.cpp
+++ b/xmltooling/signature/impl/XMLSecSignatureImpl.cpp
@@ -244,7 +244,7 @@ DOMElement* XMLSecSignatureImpl::marshall(DOMDocument* document, const vector<Si
     xmltooling::NDC ndc("marshall");
 #endif
     
-    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".XMLObject.Signature");
+    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".Signature");
     log.debug("marshalling ds:Signature");
 
     DOMElement* cachedDOM=getDOM();
@@ -357,7 +357,7 @@ DOMElement* XMLSecSignatureImpl::marshall(DOMElement* parentElement, const vecto
     xmltooling::NDC ndc("marshall");
 #endif
     
-    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".XMLObject.Signature");
+    Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".Signature");
     log.debug("marshalling ds:Signature");
 
     DOMElement* cachedDOM=getDOM();
@@ -448,7 +448,7 @@ DOMElement* XMLSecSignatureImpl::marshall(DOMElement* parentElement, const vecto
 
 XMLObject* XMLSecSignatureImpl::unmarshall(DOMElement* element, bool bindDocument)
 {
-    Category::getInstance(XMLTOOLING_LOGCAT ".XMLObject.Signature").debug("unmarshalling ds:Signature");
+    Category::getInstance(XMLTOOLING_LOGCAT ".Signature").debug("unmarshalling ds:Signature");
 
     try {
         m_signature=XMLToolingInternalConfig::getInternalConfig().m_xsecProvider->newSignatureFromDOM(

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list