aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-common
diff options
context:
space:
mode:
authorAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-08-26 16:04:42 +0200
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-08-26 16:04:42 +0200
commitaceea898eb8f9b4d7b634bfc6f97e682f5c0a9c1 (patch)
tree74ddb0efc02867e2dd441e33abcda308d6b3056f /pdf-as-common
parent0687db9816f3a5d4518f08a383593169173906b5 (diff)
downloadpdf-as-4-aceea898eb8f9b4d7b634bfc6f97e682f5c0a9c1.tar.gz
pdf-as-4-aceea898eb8f9b4d7b634bfc6f97e682f5c0a9c1.tar.bz2
pdf-as-4-aceea898eb8f9b4d7b634bfc6f97e682f5c0a9c1.zip
Sorted logging output
Diffstat (limited to 'pdf-as-common')
-rw-r--r--pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java
index 26505e50..71894793 100644
--- a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java
+++ b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java
@@ -68,7 +68,7 @@ public class Settings implements ISettings, IProfileConstants {
String configDir = workDirectory.getAbsolutePath() + File.separator
+ CFG_DIR;
Properties tmpProps = new Properties();
- logger.info("Loading: " + file.getName());
+ logger.debug("Loading: " + file.getName());
tmpProps.load(new FileInputStream(file));
properties.putAll(tmpProps);
@@ -97,7 +97,7 @@ public class Settings implements ISettings, IProfileConstants {
fileFilter, null);
}
if (includeFiles != null && !includeFiles.isEmpty()) {
- logger.info("Including '" + includeFileName + "'.");
+ logger.debug("Including '" + includeFileName + "'.");
for (File includeFile : includeFiles) {
loadSettingsRecursive(workDirectory, includeFile);
}