updated to new package of main Server class

This commit is contained in:
hns 2001-08-27 16:50:20 +00:00
parent 232f1b37bd
commit c6d3edf6ae

View file

@ -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);
}