Skip to content

Commit

Permalink
CXP-1566: Change "No maximum LSN recorded" log message to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
sugarcrm-jgminder authored and ramanenka committed Dec 16, 2024
1 parent 9549cd3 commit 540eb33
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,11 @@ public boolean executeIteration(ChangeEventSourceContext context, SqlServerParti
}
}
catch (SQLException e) {
LOGGER.warn("No maximum LSN recorded in the database; this may happen if there are no changes recorded in the change table yet or " +
LOGGER.debug("No maximum LSN recorded in the database; this may happen if there are no changes recorded in the change table yet or " +
"low activity database where the cdc clean up job periodically clears entries from the cdc tables. " +
"Otherwise, this may be an indication that the SQL Server Agent is not running. " +
"You should follow the documentation on how to configure SQL Server Agent running status query.");
LOGGER.warn("Cannot query the status of the SQL Server Agent", e);
LOGGER.debug("Cannot query the status of the SQL Server Agent", e);
}
checkAgent = false;
}
Expand Down

0 comments on commit 540eb33

Please sign in to comment.