You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by le...@apache.org on 2014/04/01 18:03:51 UTC

git commit: Change logging of Configuration#getConfigurationDump() in o.a.a.Any23(configuration, extractorGroup to debug.)

Repository: any23
Updated Branches:
  refs/heads/master 83f44985d -> f24be4b35


Change logging of Configuration#getConfigurationDump() in o.a.a.Any23(configuration, extractorGroup to debug.)


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

Branch: refs/heads/master
Commit: f24be4b35ab8b14a4346fc2963b41a0506d32e53
Parents: 83f4498
Author: Lewis John McGibbney <le...@apache.org>
Authored: Tue Apr 1 17:03:31 2014 +0100
Committer: Lewis John McGibbney <le...@apache.org>
Committed: Tue Apr 1 17:03:31 2014 +0100

----------------------------------------------------------------------
 core/src/main/java/org/apache/any23/Any23.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/any23/blob/f24be4b3/core/src/main/java/org/apache/any23/Any23.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/any23/Any23.java b/core/src/main/java/org/apache/any23/Any23.java
index aed2373..abd596c 100644
--- a/core/src/main/java/org/apache/any23/Any23.java
+++ b/core/src/main/java/org/apache/any23/Any23.java
@@ -100,7 +100,7 @@ public class Any23 {
     public Any23(Configuration configuration, ExtractorGroup extractorGroup) {
         if(configuration == null) throw new NullPointerException("configuration must be not null.");
         this.configuration = configuration;
-        logger.info( configuration.getConfigurationDump() );
+        logger.debug( configuration.getConfigurationDump() );
 
         this.defaultUserAgent = configuration.getPropertyOrFail("any23.http.user.agent.default");