From 6571406fa60a49ce82aeb1e2ae4fa9bfd3706493 Mon Sep 17 00:00:00 2001 From: Paul Blacknell Date: Sun, 13 Feb 2022 07:56:21 +0000 Subject: [PATCH] Update Watchdog.php --- src/Watchdog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Watchdog.php b/src/Watchdog.php index 7d8f31f..ae6dd5a 100644 --- a/src/Watchdog.php +++ b/src/Watchdog.php @@ -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)); }