HHH-13451 Logging typo in CascadingActions causing significant allocations

This commit is contained in:
Sanne Grinovero 2019-06-22 23:38:44 +01:00
parent 44c13af23b
commit 9367f01162
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ public class CascadingActions {
Object anything,
boolean isCascadeDeleteEnabled)
throws HibernateException {
LOG.tracev( "Cascading to persist: {0}" + entityName );
LOG.tracev( "Cascading to persist: {0}", entityName );
session.persist( entityName, child, (Map) anything );
}