lower log level

This commit is contained in:
zzz
2012-06-02 21:45:00 +00:00
parent eb6217add9
commit 4346c90aa2

View File

@ -490,8 +490,8 @@ public class JobQueue {
// failsafe - remove and re-add, peek at the next job, // failsafe - remove and re-add, peek at the next job,
// break and go around again // break and go around again
if (timeToWait > 10*1000 && iter.hasNext()) { if (timeToWait > 10*1000 && iter.hasNext()) {
if (_log.shouldLog(Log.WARN)) if (_log.shouldLog(Log.INFO))
_log.warn("Failsafe re-sort job " + j + _log.info("Failsafe re-sort job " + j +
" with delay " + DataHelper.formatDuration(timeToWait)); " with delay " + DataHelper.formatDuration(timeToWait));
iter.remove(); iter.remove();
Job nextJob = iter.next(); Job nextJob = iter.next();