You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2017/02/18 11:36:25 UTC

svn commit: r1783520 - /jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java

Author: fschumacher
Date: Sat Feb 18 11:36:25 2017
New Revision: 1783520

URL: http://svn.apache.org/viewvc?rev=1783520&view=rev
Log:
Log exception, as this is an error and every bit of information might be helpful.

Modified:
    jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java

Modified: jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java?rev=1783520&r1=1783519&r2=1783520&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java (original)
+++ jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElement.java Sat Feb 18 11:36:25 2017
@@ -299,7 +299,7 @@ public class DataSourceElement extends A
                             isolation, System.identityHashCode(dsc));
                 } catch (SQLException ex) {
                     log.error("Could not set transaction isolation: {}@{}", 
-                            isolation, System.identityHashCode(dsc));
+                            isolation, System.identityHashCode(dsc), ex);
                 }   
             }