Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/#semantic-versioning-200).

## [?]
### :bug: Fixed
- Values for the `wrapperLoggerLevel` parameter are no longer case-sensitive ([#PR #481](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/481)).

## [2.1.2] - 2023-5-21
### :crab: Changed
- Explicitly check for 28000 and 28P01 SQLStates in the IAM authentication plugin after SQLExceptions are thrown ([PR #456](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/456) and [PR #457](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/457)).
Expand Down
2 changes: 1 addition & 1 deletion wrapper/src/main/java/software/amazon/jdbc/Driver.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public Connection connect(final String url, final Properties info) throws SQLExc

final String logLevelStr = PropertyDefinition.LOGGER_LEVEL.getString(info);
if (!StringUtils.isNullOrEmpty(logLevelStr)) {
final Level logLevel = Level.parse(logLevelStr);
final Level logLevel = Level.parse(logLevelStr.toUpperCase());
final Logger rootLogger = Logger.getLogger("");
for (final Handler handler : rootLogger.getHandlers()) {
if (handler instanceof ConsoleHandler) {
Expand Down