Skip to content

Commit

Permalink
Update HikariConfig.java (#1761)
Browse files Browse the repository at this point in the history
fix alignment for config lines in log
  • Loading branch information
darkslave86 committed May 21, 2021
1 parent 44779bd commit 2a92bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/zaxxer/hikari/HikariConfig.java
Expand Up @@ -1132,7 +1132,7 @@ else if (value instanceof String) {
else if (value == null) {
value = "none";
}
LOGGER.debug("{}{}", (prop + "................................................".substring(0, 32)), value);
LOGGER.debug("{}{}", (prop + "................................................").substring(0, 32), value);
}
catch (Exception e) {
// continue
Expand Down

0 comments on commit 2a92bcf

Please sign in to comment.