Revision: 4329
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4329&view=rev
Author: ayenderahien
Date: 2009-05-16 11:31:17 +0000 (Sat, 16 May 2009)
Log Message:
-----------
minor logging changes - making it easer for humans to read them
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate/Impl/SessionImpl.cs
Modified: trunk/nhibernate/src/NHibernate/Impl/SessionImpl.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Impl/SessionImpl.cs 2009-05-16 08:09:29 UTC (rev 4328)
+++ trunk/nhibernate/src/NHibernate/Impl/SessionImpl.cs 2009-05-16 11:31:17 UTC (rev 4329)
@@ -226,7 +226,7 @@
if (log.IsDebugEnabled)
{
- log.Debug(string.Format("[session-id={0}]opened session at timestamp:{1}", sessionId, timestamp));
+ log.Debug(string.Format("[session-id={0}] opened session at timestamp:{1}", sessionId, timestamp));
}
CheckAndUpdateSessionStatus();
@@ -1654,7 +1654,7 @@
{
using (new SessionIdLoggingContext(sessionId))
{
- log.Debug(string.Format("[session-id={0}]running ISession.Dispose()",sessionId));
+ log.Debug(string.Format("[session-id={0}] running ISession.Dispose()",sessionId));
if (TakingPartInDtcTransaction)
{
shouldCloseSessionOnDtcTransactionCompleted = true;
@@ -1683,7 +1683,7 @@
return;
}
- log.Debug(string.Format("[session-id={0}]executing real Dispose({1})", sessionId, isDisposing));
+ log.Debug(string.Format("[session-id={0}] executing real Dispose({1})", sessionId, isDisposing));
// free managed resources that are being managed by the session if we
// know this call came through Dispose()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|