Remove log warning on reschedule to stopped actor. See #1760
This commit is contained in:
parent
f00e38649f
commit
4753f4af02
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ class DefaultScheduler(hashedWheelTimer: HashedWheelTimer,
|
||||||
receiver ! message
|
receiver ! message
|
||||||
// Check if the receiver is still alive and kicking before reschedule the task
|
// Check if the receiver is still alive and kicking before reschedule the task
|
||||||
if (receiver.isTerminated) {
|
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 {
|
} else {
|
||||||
scheduleNext(timeout, delay, continuousCancellable)
|
scheduleNext(timeout, delay, continuousCancellable)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue