Skip to content

Commit 2bb453c

Browse files
committed
HHH-7130 cleanup
1 parent a9aaf87 commit 2bb453c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hibernate-core/src/main/java/org/hibernate/internal/CacheImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public boolean containsQuery(String regionName) {
233233
public void evictDefaultQueryRegion() {
234234
if ( sessionFactory.getSettings().isQueryCacheEnabled() ) {
235235
if ( LOG.isDebugEnabled() ) {
236-
LOG.debugf( "Evicting default query region cache." );
236+
LOG.debug( "Evicting default query region cache." );
237237
}
238238
sessionFactory.getQueryCache().clear();
239239
}
@@ -264,7 +264,7 @@ public void evictQueryRegions() {
264264
return;
265265
}
266266
if ( LOG.isDebugEnabled() ) {
267-
LOG.debugf( "Evicting cache of all query regions." );
267+
LOG.debug( "Evicting cache of all query regions." );
268268
}
269269
for ( QueryCache queryCache : queryCaches.values() ) {
270270
queryCache.clear();

0 commit comments

Comments
 (0)