Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansergeevitch committed Jul 29, 2024
1 parent d781d83 commit 6573a6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/main/java/com/firebolt/FireboltDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
public class FireboltDriver implements Driver {

public static final String JDBC_FIREBOLT = "jdbc:firebolt:";
private static final Logger rootLog;
private static final Logger log;
private final List<Connection> connections = new LinkedList<>();

static {
Expand Down Expand Up @@ -91,7 +89,7 @@ private void closeAllConnections() {
connection.close();
}
} catch (SQLException e) {
log.log(Level.WARNING, format("Cannot close connection on process shutting down %s", connection), e);
log.warn(format("Cannot close connection on process shutting down %s", connection), e);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public void close() {
}
databaseMetaData = null;
driver.removeClosedConnection(this);
log.warning("Connection closed");
log.warn("Connection closed");
}

protected FireboltProperties extractFireboltProperties(String jdbcUri, Properties connectionProperties) {
Expand Down

0 comments on commit 6573a6f

Please sign in to comment.