git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@1719
ab3bd59b-922f-494d-bb5f-
6f0a3c29deca
public static Document loadDom(InputSource ins, boolean validate) throws SAMLException, SAXException, IOException {
Document doc = null;
- log.info("Loading XML from (" + ins.getSystemId() + ")" + (validate ? " with Schema validation" : ""));
+ log.debug("Loading XML from (" + ins.getSystemId() + ")" + (validate ? " with Schema validation" : ""));
if (validate) {
doc = org.opensaml.XML.parserPool.parse(ins, schema);
} else {
// Put the DOM in the Bucket keyed by namespace
if (bucket.containsKey(targetNamespace)) {
- log.info("Replacing XSD for namespace: "+targetNamespace+" "+filename);
+ log.debug("Replacing XSD for namespace: "+targetNamespace+" "+filename);
} else {
- log.info("Defining XSD for namespace: "+targetNamespace+" "+filename);
+ log.debug("Defining XSD for namespace: "+targetNamespace+" "+filename);
}
bucket.put(targetNamespace,xsddom);
}