HHH-5973 - Replaced , with + in AuditInterceptor.java and in events.xml
This commit is contained in:
parent
3399e34acd
commit
bc7a2c2d24
|
@ -69,11 +69,11 @@ public class AuditInterceptor extends EmptyInterceptor {
|
|||
|
||||
public void afterTransactionCompletion(Transaction tx) {
|
||||
if ( tx.wasCommitted() ) {
|
||||
System.out.println("Creations: " + creates + ", Updates: " + updates, "Loads: " + loads);
|
||||
System.out.println("Creations: " + creates + ", Updates: " + updates + "Loads: " + loads);
|
||||
}
|
||||
updates=0;
|
||||
creates=0;
|
||||
loads=0;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ public class AuditInterceptor extends EmptyInterceptor {
|
|||
|
||||
public void afterTransactionCompletion(Transaction tx) {
|
||||
if ( tx.wasCommitted() ) {
|
||||
System.out.println("Creations: " + creates + ", Updates: " + updates, "Loads: " + loads);
|
||||
System.out.println("Creations: " + creates + ", Updates: " + updates + "Loads: " + loads);
|
||||
}
|
||||
updates=0;
|
||||
creates=0;
|
||||
|
|
Loading…
Reference in New Issue