make logFlushResults() protected for the benefit of HR

This commit is contained in:
gavin 2021-05-19 11:17:02 +02:00 committed by Sanne Grinovero
parent e6688f8ebc
commit 6dc3b4a726
1 changed files with 2 additions and 2 deletions

View File

@ -104,8 +104,8 @@ public abstract class AbstractFlushingEventListener implements JpaBootstrapSensi
logFlushResults( event );
}
@SuppressWarnings( value = {"unchecked"} )
private void logFlushResults(FlushEvent event) {
@SuppressWarnings("unchecked")
protected void logFlushResults(FlushEvent event) {
if ( !LOG.isDebugEnabled() ) {
return;
}