Remove exception for unknown XML input to extraction.
authorscantor <scantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Mon, 7 Mar 2011 02:35:30 +0000 (02:35 +0000)
committerscantor <scantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Mon, 7 Mar 2011 02:35:30 +0000 (02:35 +0000)
git-svn-id: https://svn.shibboleth.net/cpp-sp/branches/REL_2@3411 cb58f699-b61c-0410-a6fe-9272a202ed29

shibsp/attribute/resolver/impl/XMLAttributeExtractor.cpp

index 0d38610..726ca3c 100644 (file)
@@ -983,7 +983,7 @@ void XMLExtractor::extractAttributes(
         return m_impl->extractAttributes(application, assertingParty.get(), relyingParty, *name1, attributes);
     }
 
-    throw AttributeExtractionException("Unable to extract attributes, unknown object type.");
+    m_log.debug("unable to extract attributes, unknown XML object type: %s", xmlObject.getElementQName().toString().c_str());
 }
 
 pair<bool,DOMElement*> XMLExtractor::background_load()