Merge pull request #27074 from akka/wip-26932-timers-logging-patriknw

Remove too verbose debug logging for timers, #26932
This commit is contained in:
Patrik Nordwall 2019-06-05 11:19:36 +02:00 committed by GitHub
commit 937cbaf328
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View file

@ -83,7 +83,6 @@ import akka.util.OptionVal
.scheduleOnce(delay, () => ctx.self.unsafeUpcast ! timerMsg)(ExecutionContexts.sameThreadExecutionContext) .scheduleOnce(delay, () => ctx.self.unsafeUpcast ! timerMsg)(ExecutionContexts.sameThreadExecutionContext)
val nextTimer = Timer(key, msg, repeat, nextGen, task) val nextTimer = Timer(key, msg, repeat, nextGen, task)
ctx.log.debug("Start timer [{}] with generation [{}]", key, nextGen)
timers = timers.updated(key, nextTimer) timers = timers.updated(key, nextTimer)
} }

View file

@ -70,7 +70,6 @@ import akka.util.OptionVal
ctx.system.scheduler.scheduleOnce(timeout, ctx.self, timerMsg)(ctx.dispatcher) ctx.system.scheduler.scheduleOnce(timeout, ctx.self, timerMsg)(ctx.dispatcher)
val nextTimer = Timer(key, msg, repeat, nextGen, task) val nextTimer = Timer(key, msg, repeat, nextGen, task)
log.debug("Start timer [{}] with generation [{}]", key, nextGen)
timers = timers.updated(key, nextTimer) timers = timers.updated(key, nextTimer)
} }