Add logging when a repo has finished closing

This commit is contained in:
James Seibel
2024-12-30 20:44:28 -06:00
parent 6c23990be2
commit 6d6d142cf3
@@ -520,8 +520,9 @@ public abstract class AbstractDhRepo<TKey, TDTO extends IBaseDTO<TKey>> implemen
if (!this.connection.isClosed())
{
LOGGER.info("Closing database connection: [" + this.connectionString + "]");
LOGGER.info("Closing database connection: [" + this.connectionString + "]...");
this.connection.close();
LOGGER.info("Finished closing database connection: [" + this.connectionString + "]");
}
else
{