diff --git a/src/Spring/Spring.Data/Transaction/Interceptor/TransactionAspectSupport.cs b/src/Spring/Spring.Data/Transaction/Interceptor/TransactionAspectSupport.cs index be827cbe..b4b0fbc2 100644 --- a/src/Spring/Spring.Data/Transaction/Interceptor/TransactionAspectSupport.cs +++ b/src/Spring/Spring.Data/Transaction/Interceptor/TransactionAspectSupport.cs @@ -365,9 +365,9 @@ namespace Spring.Transaction.Interceptor // false. We created it only to preserve the integrity of // the ThreadLocal stack maintained in this class. if (log.IsDebugEnabled) - { - log.Debug("Don't need to create transaction for [" + joinpointIdentification + - "]: this method isn't transactional"); + { + log.Debug("Skipping transactional joinpoint [" + joinpointIdentification + + "] because no transaction manager has been configured"); } } @@ -408,8 +408,8 @@ namespace Spring.Transaction.Interceptor #region Instrumentation if (log.IsDebugEnabled) - { - log.Debug("Invoking commit for transaction on " + transactionInfo.JoinpointIdentification); + { + log.Debug("Completing transaction for [" + transactionInfo.JoinpointIdentification + "]"); } #endregion