Author: gbadner
Date: 2008-09-29 19:40:25 -0400 (Mon, 29 Sep 2008)
New Revision: 15230
Modified:
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/engine/loading/LoadContexts.java
Log:
JBPAPP-1223 HHH-2563 : Log messages in
LoadContexts.locateLoadingCollectionEntry(CollectionKey key) are incorrect
Modified:
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/engine/loading/LoadContexts.java
===================================================================
---
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/engine/loading/LoadContexts.java 2008-09-29
23:28:05 UTC (rev 15229)
+++
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/engine/loading/LoadContexts.java 2008-09-29
23:40:25 UTC (rev 15230)
@@ -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;
Show replies by date