HHH-12920 Fix a debug message causing an exception at debug level

This commit is contained in:
Guillaume Smet 2018-08-23 00:10:27 +02:00
parent 5e747b7057
commit 04b3230e0f
1 changed files with 1 additions and 2 deletions

View File

@ -38,9 +38,8 @@ public abstract class AbstractCachedDomainDataAccess implements CachedDomainData
return storageAccess; return storageAccess;
} }
@SuppressWarnings({"unchecked", "WeakerAccess"})
protected void clearCache() { protected void clearCache() {
log.debugf( "Clearing cache data map [region=`%s`]" ); log.debugf( "Clearing cache data map [region=`%s`]", region.getName() );
getStorageAccess().evictData(); getStorageAccess().evictData();
} }