Scale back the INFO logging.
authorwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Mon, 11 Jul 2005 22:57:42 +0000 (22:57 +0000)
committerwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Mon, 11 Jul 2005 22:57:42 +0000 (22:57 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@1719 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

src/edu/internet2/middleware/shibboleth/xml/Parser.java
src/edu/internet2/middleware/shibboleth/xml/SchemasDirectoryImpl.java

index a687b76..f7b3073 100644 (file)
@@ -180,7 +180,7 @@ public class Parser {
     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 {
index bb7abfd..5d7983e 100644 (file)
@@ -95,9 +95,9 @@ public class SchemasDirectoryImpl extends SchemaStore {
             
             // 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);
         }