diff --git a/src/Process/Pool.php b/src/Process/Pool.php index 81a6535a..4cc6273f 100644 --- a/src/Process/Pool.php +++ b/src/Process/Pool.php @@ -48,7 +48,7 @@ protected function _childExitSignal(InformationInterface $information): PoolInte $this->_getProcessPoolStrategy()->currentPendingChildExitsCompleted(); } else { $processId = $this->_getProcess()->getProcessId(); - $this->_getLogger()->notice("Child process[$childProcessId] is not in the pool for process[$processId]."); + $this->_getLogger()->debug("Child process[$childProcessId] is not in the pool for process[$processId]."); } return $this; diff --git a/src/Process/PoolAbstract.php b/src/Process/PoolAbstract.php index 141bb214..065c611f 100644 --- a/src/Process/PoolAbstract.php +++ b/src/Process/PoolAbstract.php @@ -78,7 +78,7 @@ protected function _validateAlarm(): PoolInterface $this->_getLogger()->emergency('Process pool has no alarms and no processes.'); throw new \LogicException('Invalid process pool state.'); }else { - $this->_getLogger()->notice('Process pool only has a set alarm.'); + $this->_getLogger()->debug('Process pool only has a set alarm.'); } } pcntl_alarm($alarmValue);