#203: ENH: Add Transaction hook ... for preCommit(), postCommit(), postRollback()

This commit is contained in:
rbygrave
2014-11-22 12:14:21 +13:00
parent 6677a6199c
commit 65cb2ae94d
10 changed files with 413 additions and 152 deletions
@@ -427,10 +427,9 @@ public class TransactionManager {
for (TransactionEventListener listener : transactionEventListeners) {
listener.postTransactionCommit(transaction);
}
} catch (Exception ex) {
String m = "NotifyOfCommit failed. L2 Cache potentially not notified.";
logger.error(m, ex);
} catch (Exception ex) {
logger.error("NotifyOfCommit failed. L2 Cache potentially not notified.", ex);
}
}