|
@@ -1874,7 +1874,7 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
|
|
private Document parse(DocumentBuilder builder, URL url)
|
|
private Document parse(DocumentBuilder builder, URL url)
|
|
throws IOException, SAXException {
|
|
throws IOException, SAXException {
|
|
if (!quietmode) {
|
|
if (!quietmode) {
|
|
- LOG.info("parsing URL " + url);
|
|
|
|
|
|
+ LOG.debug("parsing URL " + url);
|
|
}
|
|
}
|
|
if (url == null) {
|
|
if (url == null) {
|
|
return null;
|
|
return null;
|
|
@@ -1885,7 +1885,7 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
|
|
private Document parse(DocumentBuilder builder, InputStream is,
|
|
private Document parse(DocumentBuilder builder, InputStream is,
|
|
String systemId) throws IOException, SAXException {
|
|
String systemId) throws IOException, SAXException {
|
|
if (!quietmode) {
|
|
if (!quietmode) {
|
|
- LOG.info("parsing input stream " + is);
|
|
|
|
|
|
+ LOG.debug("parsing input stream " + is);
|
|
}
|
|
}
|
|
if (is == null) {
|
|
if (is == null) {
|
|
return null;
|
|
return null;
|
|
@@ -1958,7 +1958,7 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
|
|
.getAbsoluteFile();
|
|
.getAbsoluteFile();
|
|
if (file.exists()) {
|
|
if (file.exists()) {
|
|
if (!quiet) {
|
|
if (!quiet) {
|
|
- LOG.info("parsing File " + file);
|
|
|
|
|
|
+ LOG.debug("parsing File " + file);
|
|
}
|
|
}
|
|
doc = parse(builder, new BufferedInputStream(
|
|
doc = parse(builder, new BufferedInputStream(
|
|
new FileInputStream(file)), ((Path)resource).toString());
|
|
new FileInputStream(file)), ((Path)resource).toString());
|