minor: changed log level for registering default functions from INFO to DEBUG


Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/62dadc6c
Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/62dadc6c
Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/62dadc6c

Branch: refs/heads/MARMOTTA-588
Commit: 62dadc6c8d4ebbcd7ea94177cef8bcf5fef18a62
Parents: 8a785b0
Author: Rupert Westenthaler <[email protected]>
Authored: Fri Apr 24 15:17:41 2015 +0200
Committer: Rupert Westenthaler <[email protected]>
Committed: Fri Apr 24 15:17:41 2015 +0200

----------------------------------------------------------------------
 .../org/apache/marmotta/ldpath/parser/DefaultConfiguration.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/62dadc6c/libraries/ldpath/ldpath-core/src/main/java/org/apache/marmotta/ldpath/parser/DefaultConfiguration.java
----------------------------------------------------------------------
diff --git 
a/libraries/ldpath/ldpath-core/src/main/java/org/apache/marmotta/ldpath/parser/DefaultConfiguration.java
 
b/libraries/ldpath/ldpath-core/src/main/java/org/apache/marmotta/ldpath/parser/DefaultConfiguration.java
index 261a151..608b071 100644
--- 
a/libraries/ldpath/ldpath-core/src/main/java/org/apache/marmotta/ldpath/parser/DefaultConfiguration.java
+++ 
b/libraries/ldpath/ldpath-core/src/main/java/org/apache/marmotta/ldpath/parser/DefaultConfiguration.java
@@ -119,7 +119,7 @@ public class DefaultConfiguration<Node> extends 
Configuration<Node> {
         while (functions.hasNext()) {
             try {
                 SelectorFunction<Node> f = functions.next();
-                log.info("registering LDPath function: {}", f.getSignature());
+                log.debug("registering LDPath function: {}", f.getSignature());
                 addFunction(f);
             } catch (ServiceConfigurationError e) {
                 log.warn("Unable to load function because of an "
@@ -137,7 +137,7 @@ public class DefaultConfiguration<Node> extends 
Configuration<Node> {
        while(testFunctions.hasNext()){
             try {
                        TestFunction testFunction = testFunctions.next();
-                log.info("registering LDPath test function: {}", 
+                log.debug("registering LDPath test function: {}", 
                         testFunction.getSignature());
                 addTestFunction(testFunction);
             } catch (ServiceConfigurationError e) {

Reply via email to