Skip to content

Commit

Permalink
log: record mysql connection url (#1451)
Browse files Browse the repository at this point in the history
record mysql connection url info (#1428 #1441)
  • Loading branch information
imbajin authored May 18, 2021
1 parent de81038 commit ff35e92
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ protected URIBuilder newConnectionURIBuilder() {
}

private Connection connect(String url) throws SQLException {
LOG.info("Connect to the jdbc url: '{}'", url);
String driverName = this.config.get(MysqlOptions.JDBC_DRIVER);
String username = this.config.get(MysqlOptions.JDBC_USERNAME);
String password = this.config.get(MysqlOptions.JDBC_PASSWORD);
Expand Down

0 comments on commit ff35e92

Please sign in to comment.