This commit is contained in:
jrandom
2004-07-10 04:13:42 +00:00
committed by zzz
parent 1669d174e1
commit 809e12b034

View File

@ -131,8 +131,8 @@ public class InNetMessagePool {
_log.info("Dropping unhandled delivery status message created " + timeSinceSent + "ms ago: " + msg); _log.info("Dropping unhandled delivery status message created " + timeSinceSent + "ms ago: " + msg);
_context.statManager().addRateData("inNetPool.droppedDeliveryStatusDelay", timeSinceSent, timeSinceSent); _context.statManager().addRateData("inNetPool.droppedDeliveryStatusDelay", timeSinceSent, timeSinceSent);
} else { } else {
if (_log.shouldLog(Log.ERROR)) if (_log.shouldLog(Log.WARN))
_log.error("Message " + messageBody + " expiring on " _log.warn("Message " + messageBody + " expiring on "
+ (messageBody != null ? (messageBody.getMessageExpiration()+"") : " [unknown]") + (messageBody != null ? (messageBody.getMessageExpiration()+"") : " [unknown]")
+ " was not handled by a HandlerJobBuilder - DROPPING: " + " was not handled by a HandlerJobBuilder - DROPPING: "
+ msg, new Exception("DROPPED MESSAGE")); + msg, new Exception("DROPPED MESSAGE"));