diff --git a/src/Worker.php b/src/Worker.php index d29403e..3403ecd 100644 --- a/src/Worker.php +++ b/src/Worker.php @@ -647,8 +647,9 @@ protected function checkIfTimedOut(ObjectId $jobId): bool { foreach ($this->scheduler->getChildProcs($jobId) as $proc) { if (JobInterface::STATUS_TIMEOUT === $proc->getStatus()) { - $this->logger->info('child job with id ['.$proc->getId().'] timed out', [ + $this->logger->debug('child job with id ['.$proc->getId().'] timed out', [ 'category' => get_class($this), + 'pm' => $this->process, ]); return true;