diff --git a/debezium-connector-sqlserver/src/main/java/io/debezium/connector/sqlserver/SqlServerStreamingChangeEventSource.java b/debezium-connector-sqlserver/src/main/java/io/debezium/connector/sqlserver/SqlServerStreamingChangeEventSource.java index adfe45f25b..27657f5dcd 100644 --- a/debezium-connector-sqlserver/src/main/java/io/debezium/connector/sqlserver/SqlServerStreamingChangeEventSource.java +++ b/debezium-connector-sqlserver/src/main/java/io/debezium/connector/sqlserver/SqlServerStreamingChangeEventSource.java @@ -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; }