Skip to content

Commit

Permalink
Change in pom.xml + Changed Log.warn to LOG.error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sfurti-yb committed Mar 1, 2024
1 parent f79f336 commit 7b8131d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flyway-database-yugabytedb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
<scope>provided</scope>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected YugabyteDBConnection doGetConnection(Connection connection) {
stmt = connection.createStatement();
stmt.execute("set yb_silence_advisory_locks_not_supported_error=on;");
} catch (SQLException throwable) {
LOG.warn("Unable to set yb_silence_advisory_locks_not_supported_error ", throwable);
LOG.error("Unable to set yb_silence_advisory_locks_not_supported_error ", throwable);
}
return new YugabyteDBConnection(this, connection);
}
Expand Down

0 comments on commit 7b8131d

Please sign in to comment.