HHH-15018 OracleTypesHelper shouldn't log stacktraces when the Oracle JDBC driver isn't loadable

This commit is contained in:
Sanne Grinovero 2022-01-10 15:55:41 +00:00
parent d2584730f3
commit 8d43be4b78
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class OracleTypesHelper {
typeCode = extractOracleCursorTypeValue();
}
catch (Exception e) {
log.warn( "Unable to resolve Oracle CURSOR JDBC type code", e );
log.warn( "Unable to resolve Oracle CURSOR JDBC type code: the class OracleTypesHelper was initialized but the Oracle JDBC driver could not be loaded." );
}
oracleCursorTypeSqlType = typeCode;
}