maxEntries = Integer.parseInt(RollerConfig.getProperty("comment.throttle.maxentries"));
} catch(Exception e) {
log.warn("bad input for config property comment.throttle.maxentries", e);
}
commentThrottle = new GenericThrottle(threshold, interval, maxEntries);
log.info("Comment Throttling ENABLED");
} else {
log.info("Comment Throttling DISABLED");
}