Skip to content

Commit 25be55c

Browse files
Fix wrong log message in LoadContexts (#3535)
1 parent c7e558b commit 25be55c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate/Engine/Loading/LoadContexts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ internal LoadingCollectionEntry LocateLoadingCollectionEntry(CollectionKey key)
239239
xrefLoadingCollectionEntries.TryGetValue(key, out rtn);
240240
if (log.IsDebugEnabled())
241241
{
242-
log.Debug("collection [{0}] {1} in load context", key, (rtn == null ? "located" : "not located"));
242+
log.Debug("collection [{0}] {1} in load context", key, (rtn == null ? "not located" : "located"));
243243
}
244244
return rtn;
245245
}

0 commit comments

Comments
 (0)