From: <aye...@us...> - 2009-01-09 23:31:21
|
Revision: 3983 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=3983&view=rev Author: ayenderahien Date: 2009-01-09 23:31:13 +0000 (Fri, 09 Jan 2009) Log Message: ----------- Logging the isolation level for DTC tx. Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Impl/AbstractSessionImpl.cs Modified: trunk/nhibernate/src/NHibernate/Impl/AbstractSessionImpl.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Impl/AbstractSessionImpl.cs 2009-01-09 20:48:07 UTC (rev 3982) +++ trunk/nhibernate/src/NHibernate/Impl/AbstractSessionImpl.cs 2009-01-09 23:31:13 UTC (rev 3983) @@ -295,7 +295,7 @@ if (System.Transactions.Transaction.Current==null) return; ambientTransation = System.Transactions.Transaction.Current; - logger.Debug("enlisted into DTC transaction"); + logger.DebugFormat("enlisted into DTC transaction: {0}", ambientTransation.IsolationLevel); AfterTransactionBegin(null); ambientTransation.TransactionCompleted += delegate(object sender, TransactionEventArgs e) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |