svn commit: r1763103 - /ofbiz/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: r1763103 - /ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java

jleroux@apache.org
Author: jleroux
Date: Sun Oct  2 21:45:21 2016
New Revision: 1763103

URL: http://svn.apache.org/viewvc?rev=1763103&view=rev
Log:
Improves: too much warning "Could not get a system property for..." in log

This should not be a warning but an info. Also I wonder if we really need to
show all these, after all a default fallback should exist in a properties file

Still OFBIZ-7754 needs to be solved...

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

Modified: ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java?rev=1763103&r1=1763102&r2=1763103&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java (original)
+++ ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtilProperties.java Sun Oct  2 21:45:21 2016
@@ -79,7 +79,7 @@ public final class EntityUtilProperties
                 return results;
             }
         } catch (Exception e) {
-            Debug.logWarning("Could not get a system property for " + name + " : " + e.getMessage(), module);
+            Debug.logInfo("Could not get a system property for " + name + " : " + e.getMessage(), module);
         }
         return results;
     }