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 c1931f5d8d
commit e8fcbe29c3
1 changed files with 1 additions and 2 deletions

View File

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