Add additional logging to message send log store

This commit is contained in:
AsamK 2022-02-11 20:35:52 +01:00
parent 6dabf4550b
commit 1db7f8d76e

View file

@ -354,6 +354,8 @@ public class MessageSendLogStore implements AutoCloseable {
final var rowCount = statement.executeUpdate();
if (rowCount > 0) {
logger.debug("Removed {} outdated entries from the message send log", rowCount);
} else {
logger.trace("No outdated entries to be removed from message send log.");
}
}
}