We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 758059d commit 2f15280Copy full SHA for 2f15280
1 file changed
src/main/java/org/utplsql/cli/RunAction.java
@@ -192,8 +192,8 @@ private void initDatabase(DataSource dataSource) throws SQLException {
192
193
compatibilityProxy = checkFrameworkCompatibility(conn);
194
195
- logger.info("Successfully connected to database. UtPLSQL core: {}", compatibilityProxy.getVersionDescription());
196
- logger.info("Oracle-Version: {}", new DefaultDatabaseInformation().getOracleVersion(conn));
+ logger.info("Connected to Oracle database: {}", new DefaultDatabaseInformation().getOracleVersion(conn));
+ logger.info("utPLSQL core: {}", compatibilityProxy.getVersionDescription());
197
} catch (SQLException e) {
198
if (e.getErrorCode() == 1017 || e.getErrorCode() == 12514) {
199
throw new DatabaseConnectionFailed(e);
0 commit comments