Skip to content

Commit

Permalink
Update Watchdog.php
Browse files Browse the repository at this point in the history
  • Loading branch information
blacknell committed Feb 13, 2022
1 parent 172ff22 commit 6571406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Watchdog.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function watch(string $watchScript, string $watchScriptGrep, string $watc
foreach ($processes as $process) {
$processPids[] = $process['pid'];
}
$this->logger->debug(sprintf("%d processes match grep '%s'", count($processes), $watchScriptGrep), $processPids);
$this->logger->info(sprintf("%d processes match grep '%s'", count($processes), $watchScriptGrep), $processPids);
if (count($processes) == 0) {
$this->logger->warning(sprintf("No processes restarted - none match grep '%s'", $watchScriptGrep));
}
Expand Down

0 comments on commit 6571406

Please sign in to comment.