HHH-12920 Fix a debug message causing an exception at debug level
This commit is contained in:
parent
5e747b7057
commit
04b3230e0f
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue