Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlamz committed Mar 11, 2024
1 parent bec3ba1 commit 2538c51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ protected void failoverReader(final HostSpec failedHostSpec) throws SQLException
this.pluginService.getCurrentHostSpec().removeAlias(oldAliases.toArray(new String[]{}));
updateTopology(true);

LOGGER.fine(
LOGGER.info(
() -> Messages.get(
"Failover.establishedConnection",
new Object[]{this.pluginService.getCurrentHostSpec()}));
Expand Down Expand Up @@ -642,7 +642,7 @@ protected void failoverWriter() throws SQLException {
this.failoverWriterTriggeredCounter.inc();

try {
LOGGER.fine(() -> Messages.get("Failover.startWriterFailover"));
LOGGER.info(() -> Messages.get("Failover.startWriterFailover"));
final WriterFailoverResult failoverResult = this.writerFailoverHandler.failover(this.pluginService.getHosts());
if (failoverResult != null) {
final SQLException exception = failoverResult.getException();
Expand Down

0 comments on commit 2538c51

Please sign in to comment.