Server.getInstance().getTimer().schedule(new Saver(dirlog), 30*1000, 30*1000); // since this is a fairly large chunk of data, we stick to the saving scheme we have here
enableDirscript = settings.getBoolean("/dirlog/enable_dirscript");
if (enableDirscript) {
String dirscriptExclusions = settings.get("/dirlog/dirscript_exclusions");
dirscript = new Dirscript(dirlog, dirscriptExclusions);
}
} catch (IOException e) {
throw new ConfigurationException("Failed to load dirlog: " + e.getMessage(), e);
}