svn commit: r1785485 - /ofbiz/ofbiz-framework/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1785485 - /ofbiz/ofbiz-framework/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java

jleroux@apache.org
Author: jleroux
Date: Sat Mar  4 13:44:30 2017
New Revision: 1785485

URL: http://svn.apache.org/viewvc?rev=1785485&view=rev
Log:
No functional change, from Debug.Info to Debug.logError

More to test the Buildbot triggering

Modified:
    ofbiz/ofbiz-framework/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java

Modified: ofbiz/ofbiz-framework/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java?rev=1785485&r1=1785484&r2=1785485&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java (original)
+++ ofbiz/ofbiz-framework/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java Sat Mar  4 13:44:30 2017
@@ -47,7 +47,7 @@ import org.apache.ofbiz.entity.GenericVa
 public final class EntityUtilProperties implements Serializable {
 
     public final static String module = EntityUtilProperties.class.getName();
-    
+
     private EntityUtilProperties () {}
 
     private static Map<String, String> getSystemPropertyValue(String resource, String name, Delegator delegator) {
@@ -62,7 +62,7 @@ public final class EntityUtilProperties
         }
         resource = resource.replace(".properties", "");
         if (delegator == null) {
-            Debug.logInfo("Could not get a system property for " + name + ". Reason: the delegator is null", module);
+            Debug.logError("Could not get a system property for " + name + ". Reason: the delegator is null", module);
             return results;
         }
         try {
@@ -83,7 +83,7 @@ public final class EntityUtilProperties
                 return results;
             }
         } catch (Exception e) {
-            Debug.logInfo("Could not get a system property for " + name + " : " + e.getMessage(), module);
+            Debug.logError("Could not get a system property for " + name + " : " + e.getMessage(), module);
         }
         return results;
     }