You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by de...@apache.org on 2014/09/15 21:15:20 UTC

svn commit: r1625118 - /uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/utils/DuccPropertiesResolver.java

Author: degenaro
Date: Mon Sep 15 19:15:19 2014
New Revision: 1625118

URL: http://svn.apache.org/r1625118
Log:
UIMA-4011 DUCC Common DuccPropertiesResolver should not issue info message for loading private properties

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/utils/DuccPropertiesResolver.java

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/utils/DuccPropertiesResolver.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/utils/DuccPropertiesResolver.java?rev=1625118&r1=1625117&r2=1625118&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/utils/DuccPropertiesResolver.java (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/utils/DuccPropertiesResolver.java Mon Sep 15 19:15:19 2014
@@ -213,10 +213,10 @@ public class DuccPropertiesResolver {
                 privateProperties.load(fis);
                 fis.close();
                 if(loadedPrivate.get()) {
-                	logger.debug(location, duccId, "Loaded: "+fileName);
+                	logger.debug(location, duccId, "Reloaded: "+fileName);
                 }
                 else {
-                	logger.info(location, duccId, "Loaded: "+fileName);
+                	logger.debug(location, duccId, "Loaded: "+fileName);
                 }
                 loadedPrivate.set(true);
             }