Skip to content

Commit

Permalink
#41 changed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
s-aebischer committed Mar 30, 2022
1 parent 27f7edd commit ad7beb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ad7beb5

Please sign in to comment.