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:
parent
6473e4d24e
commit
072b3cf623
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue