#757 - Reduce logging of Commit message of org.avaje.ebean.TXN from INFO to DEBUG

This commit is contained in:
Robin Bygrave
2016-06-30 05:38:16 +12:00
parent b82085da42
commit 3c40293183
@@ -402,12 +402,7 @@ public class TransactionManager {
public void notifyOfCommit(SpiTransaction transaction) {
try {
if (transaction.isExplicit()) {
if (TXN_LOGGER.isInfoEnabled()) {
TXN_LOGGER.info(transaction.getLogPrefix() + "Commit");
}
} else if (TXN_LOGGER.isDebugEnabled()) {
if (TXN_LOGGER.isDebugEnabled()) {
TXN_LOGGER.debug(transaction.getLogPrefix() + "Commit");
}