Skip to content

Commit

Permalink
fix: log connection URL when it can't be parsed
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Jul 19, 2022
1 parent def26c6 commit 36cd24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgjdbc/src/main/java/org/postgresql/Driver.java
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ private Properties loadDefaultProperties() throws IOException {
// parse URL and add more properties
if ((props = parseURL(url, props)) == null) {
throw new PSQLException(
GT.tr("Unable to parse URL "),
GT.tr("Unable to parse URL {0}", url),
PSQLState.UNEXPECTED_ERROR);
}
try {
Expand Down

0 comments on commit 36cd24c

Please sign in to comment.