Skip to content

Commit

Permalink
JDBCUtil Exception improvement (#2507)
Browse files Browse the repository at this point in the history
  • Loading branch information
chngpe authored Jan 7, 2025
1 parent b5da5fb commit f910d92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public static List<TableName> getTableMetadata(PreparedStatement preparedStateme
}
}
catch (SQLException ex) {
LOGGER.info("Unable to return list of {} from data source!", tableType);
LOGGER.warn("Unable to return list of {} from data source!. Returning Empty list of table", tableType, ex);
}
return list.build();
}
Expand Down

0 comments on commit f910d92

Please sign in to comment.