From: Michael Vogel Date: Sat, 21 Jul 2018 00:43:22 +0000 (+0200) Subject: One more notice (#5429) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6a6a805225688b308dee4cf94dd3ef115ded868f;hp=6da47936c63039792a0cbf9021e69f2cd1ad4731;p=friendica.git One more notice (#5429) * Some more notices * And some more notice in the worker --- diff --git a/src/Core/Worker.php b/src/Core/Worker.php index f649e7773e..633b8e12e9 100644 --- a/src/Core/Worker.php +++ b/src/Core/Worker.php @@ -577,7 +577,7 @@ class Worker // How long is the process already running? $duration = (time() - strtotime($entry["executed"])) / 60; if ($duration > $max_duration) { - logger("Worker process ".$entry["pid"]." (".implode(" ", $argv).") took more than ".$max_duration." minutes. It will be killed now."); + logger("Worker process ".$entry["pid"]." (".substr(json_encode($argv), 0, 50).") took more than ".$max_duration." minutes. It will be killed now."); posix_kill($entry["pid"], SIGTERM); // We killed the stale process.