Clock: Change a CRIT to an ERROR, lower threshold for changing from 10s to 5s

This commit is contained in:
zzz
2010-01-16 18:58:02 +00:00
parent 670b4033cb
commit 95bb322cd7
2 changed files with 4 additions and 4 deletions

View File

@@ -84,7 +84,7 @@ public class RouterClock extends Clock {
if (_alreadyChanged) {
if (delta > 15*1000)
getLog().log(Log.CRIT, "Updating clock offset to " + offsetMs + "ms from " + _offset + "ms");
getLog().error("Warning - Updating clock offset to " + offsetMs + "ms from " + _offset + "ms");
else if (getLog().shouldLog(Log.INFO))
getLog().info("Updating clock offset to " + offsetMs + "ms from " + _offset + "ms");