Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Next Next commit
Update run action log info.
  • Loading branch information
Jacek Gębal committed Apr 23, 2026
commit 2f1528093fa668c4b050388d50c3b0846efb4b97
4 changes: 2 additions & 2 deletions src/main/java/org/utplsql/cli/RunAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ private void initDatabase(DataSource dataSource) throws SQLException {

compatibilityProxy = checkFrameworkCompatibility(conn);

logger.info("Successfully connected to database. UtPLSQL core: {}", compatibilityProxy.getVersionDescription());
logger.info("Oracle-Version: {}", new DefaultDatabaseInformation().getOracleVersion(conn));
logger.info("Connected to Oracle database: {}", new DefaultDatabaseInformation().getOracleVersion(conn));
logger.info("utPLSQL core: {}", compatibilityProxy.getVersionDescription());
} catch (SQLException e) {
if (e.getErrorCode() == 1017 || e.getErrorCode() == 12514) {
throw new DatabaseConnectionFailed(e);
Expand Down