1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-05 23:22:47 +00:00

Implements configuration for WorldEventDispatcherService

This commit is contained in:
2011-12-29 03:02:23 -02:00
parent 209f3d0922
commit bb5c573c0b
4 changed files with 52 additions and 73 deletions

View File

@@ -186,7 +186,7 @@ public class SoftCacheService extends AbstractService implements CacheService {
while ((en = (SoftEntry) refQueue.poll()) != null) {
K key = en.getKey();
if (log.isDebugEnabled())
log.debug("{} : cleaned up {} for key: {}", cacheName, key);
log.debug("{} : cleaned up value for key: {}", cacheName, key);
cacheMap.remove(key);
}
}

View File

@@ -185,7 +185,7 @@ public class WeakCacheService extends AbstractService implements CacheService {
while ((en = (Entry) refQueue.poll()) != null) {
K key = en.getKey();
if (log.isDebugEnabled())
log.debug("{}: cleaned up for key: {}", cacheName, key);
log.debug("{}: cleaned up value for key: {}", cacheName, key);
cacheMap.remove(key);
}
}