* Make graphs clickable to get larger graphs

* Change SimpleTimer CRIT to a WARN, increase threshold
    * Checklist update
This commit is contained in:
zzz
2008-02-13 11:49:24 +00:00
parent 43f2695901
commit d2f3a262db
5 changed files with 25 additions and 6 deletions

View File

@@ -207,11 +207,11 @@ public class SimpleTimer {
_occurredEventCount += eventsToFire.size();
} else {
_occurredTime = now;
if (_occurredEventCount > 1000) {
if (_occurredEventCount > 2500) {
StringBuffer buf = new StringBuffer(128);
buf.append("Too many simpleTimerJobs (").append(_occurredEventCount);
buf.append(") in a second!");
_log.log(Log.CRIT, buf.toString());
_log.log(Log.WARN, buf.toString());
}
_occurredEventCount = 0;
}