diff --git a/src/helma/util/CacheMap.java b/src/helma/util/CacheMap.java index 13aebb96..f8e620e6 100644 --- a/src/helma/util/CacheMap.java +++ b/src/helma/util/CacheMap.java @@ -184,7 +184,7 @@ public class CacheMap { else { if (newTable.size() >= eachCapacity) { // Rotate the tables. - helma.objectmodel.IServer.getLogger().log ("Rotating Cache tables at "+newTable.size()+"/"+oldTable.size()+" (new/old)"); + helma.main.Server.getLogger().log ("Rotating Cache tables at "+newTable.size()+"/"+oldTable.size()+" (new/old)"); oldTable = newTable; newTable = new HashMap (eachCapacity, loadFactor); }