Reduced "getParameterType call not supported" log message to single line
Issue: SPR-10185
This commit is contained in:
parent
7a9d58375f
commit
41f041e6ae
|
@ -231,7 +231,9 @@ public abstract class StatementCreatorUtils {
|
|||
sqlType = ps.getParameterMetaData().getParameterType(paramIndex);
|
||||
}
|
||||
catch (Throwable ex) {
|
||||
logger.debug("JDBC 3.0 getParameterType call not supported", ex);
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("JDBC 3.0 getParameterType call not supported: " + ex);
|
||||
}
|
||||
// JDBC driver not compliant with JDBC 3.0
|
||||
// -> proceed with database-specific checks
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue