File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hibernate-core/src/main/java/org/hibernate/internal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ public boolean containsQuery(String regionName) {
233
233
public void evictDefaultQueryRegion () {
234
234
if ( sessionFactory .getSettings ().isQueryCacheEnabled () ) {
235
235
if ( LOG .isDebugEnabled () ) {
236
- LOG .debugf ( "Evicting default query region cache." );
236
+ LOG .debug ( "Evicting default query region cache." );
237
237
}
238
238
sessionFactory .getQueryCache ().clear ();
239
239
}
@@ -264,7 +264,7 @@ public void evictQueryRegions() {
264
264
return ;
265
265
}
266
266
if ( LOG .isDebugEnabled () ) {
267
- LOG .debugf ( "Evicting cache of all query regions." );
267
+ LOG .debug ( "Evicting cache of all query regions." );
268
268
}
269
269
for ( QueryCache queryCache : queryCaches .values () ) {
270
270
queryCache .clear ();
You can’t perform that action at this time.
0 commit comments