Tone down logging in SelectionHandler
This commit is contained in:
parent
78f3b10b45
commit
1fa574b372
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ private[io] class SelectionHandler(manager: ActorRef, settings: SelectionHandler
|
||||||
override def supervisorStrategy = SupervisorStrategy.stoppingStrategy
|
override def supervisorStrategy = SupervisorStrategy.stoppingStrategy
|
||||||
|
|
||||||
def withCapacityProtection(cmd: WorkerForCommand, retriesLeft: Int)(body: ⇒ Unit): Unit = {
|
def withCapacityProtection(cmd: WorkerForCommand, retriesLeft: Int)(body: ⇒ Unit): Unit = {
|
||||||
log.debug("Executing [{}]", cmd)
|
if (TraceLogging) log.debug("Executing [{}]", cmd)
|
||||||
if (MaxChannelsPerSelector == -1 || childrenKeys.size < MaxChannelsPerSelector) {
|
if (MaxChannelsPerSelector == -1 || childrenKeys.size < MaxChannelsPerSelector) {
|
||||||
body
|
body
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue