From f70609723f1d6848f9cec81cac65ab53047dcbf3 Mon Sep 17 00:00:00 2001 From: markpollack Date: Thu, 4 Jun 2009 04:03:05 +0000 Subject: [PATCH] minor improvements to debug logging --- .../Interceptor/TransactionAspectSupport.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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