On 3/26/07, KÖLL Claus <[EMAIL PROTECTED]> wrote:
i think in the method cache(ItemState state) of the MLRUItemStateCache there should be a log.debug instead the log.info call ..
agreed, fixed in svn r522460. thanks! stefan
if (numWrites++%10000 == 0 && log.isDebugEnabled()) {
log.info(this + " size=" + cache.size() + ", " + totalMem + "/" + maxMem);
//better
//log.debug(this + " size=" + cache.size() + ", " + totalMem + "/" + maxMem);
}
claus
