[hibernate-commits] Hibernate SVN: r13951 - core/branches/Branch_3_2/src/org/hibernate/engine/loading.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Aug 27 17:47:57 EDT 2007


Author: gbadner
Date: 2007-08-27 17:47:57 -0400 (Mon, 27 Aug 2007)
New Revision: 13951

Modified:
   core/branches/Branch_3_2/src/org/hibernate/engine/loading/LoadContexts.java
Log:
HHH-2563 : Reversed log messages in LoadContexts.locateLoadingCollectionEntry(CollectionKey key)


Modified: core/branches/Branch_3_2/src/org/hibernate/engine/loading/LoadContexts.java
===================================================================
--- core/branches/Branch_3_2/src/org/hibernate/engine/loading/LoadContexts.java	2007-08-27 21:09:58 UTC (rev 13950)
+++ core/branches/Branch_3_2/src/org/hibernate/engine/loading/LoadContexts.java	2007-08-27 21:47:57 UTC (rev 13951)
@@ -271,10 +271,10 @@
 		LoadingCollectionEntry rtn = ( LoadingCollectionEntry ) xrefLoadingCollectionEntries.get( key );
 		if ( log.isTraceEnabled() ) {
 			if ( rtn == null ) {
-				log.trace( "collection [" + key + "] located in load context" );
+				log.trace( "collection [" + key + "] not located in load context" );
 			}
 			else {
-				log.trace( "collection [" + key + "] not located in load context" );
+				log.trace( "collection [" + key + "] located in load context" );
 			}
 		}
 		return rtn;




More information about the hibernate-commits mailing list