HHH-2563 : Reversed log messages in LoadContexts.locateLoadingCollectionEntry(CollectionKey key)

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13952 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Gail Badner 2007-08-27 21:48:51 +00:00
parent 6473e4d24e
commit 072b3cf623
1 changed files with 2 additions and 2 deletions

View File

@ -268,10 +268,10 @@ public class LoadContexts {
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;