Remove log warning on reschedule to stopped actor. See #1760

This commit is contained in:
Patrik Nordwall 2012-02-01 11:42:27 +01:00
parent f00e38649f
commit 4753f4af02

View file

@ -126,7 +126,7 @@ class DefaultScheduler(hashedWheelTimer: HashedWheelTimer,
receiver ! message
// Check if the receiver is still alive and kicking before reschedule the task
if (receiver.isTerminated) {
log.warning("Could not reschedule message to be sent because receiving actor has been terminated.")
log.debug("Could not reschedule message to be sent because receiving actor has been terminated.")
} else {
scheduleNext(timeout, delay, continuousCancellable)
}