* SimpleTimer: Change congestion message from error to warn
This commit is contained in:
@ -107,8 +107,8 @@ public class SimpleTimer {
|
|||||||
_events.notifyAll();
|
_events.notifyAll();
|
||||||
}
|
}
|
||||||
if (time.longValue() > eventTime + 100) {
|
if (time.longValue() > eventTime + 100) {
|
||||||
if (_log.shouldLog(Log.ERROR))
|
if (_log.shouldLog(Log.WARN))
|
||||||
_log.error("Lots of timer congestion, had to push " + event + " back "
|
_log.warn("Lots of timer congestion, had to push " + event + " back "
|
||||||
+ (time.longValue()-eventTime) + "ms (# events: " + totalEvents + ")");
|
+ (time.longValue()-eventTime) + "ms (# events: " + totalEvents + ")");
|
||||||
}
|
}
|
||||||
long timeToAdd = System.currentTimeMillis() - now;
|
long timeToAdd = System.currentTimeMillis() - now;
|
||||||
|
Reference in New Issue
Block a user