svn commit: r896853 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/SqlJdbcUtil.java

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

svn commit: r896853 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/SqlJdbcUtil.java

jonesde
Author: jonesde
Date: Thu Jan  7 11:46:00 2010
New Revision: 896853

URL: http://svn.apache.org/viewvc?rev=896853&view=rev
Log:
Small change to reduce the volume on this frequent error message that simply lets you know the system is falling back to a different way of doing things

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/SqlJdbcUtil.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/SqlJdbcUtil.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/SqlJdbcUtil.java?rev=896853&r1=896852&r2=896853&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/SqlJdbcUtil.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/SqlJdbcUtil.java Thu Jan  7 11:46:00 2010
@@ -532,6 +532,8 @@
                 try {
                     entity.dangerousSetNoCheckButFast(curField, converter.convert(sourceObject));
                     return;
+                } catch (ClassCastException e) {
+                    Debug.logError(e.toString(), module);
                 } catch (Exception e) {
                     Debug.logError(e, module);
                 }